Quote:
Originally Posted by jakobmuster
Looks like a random collection of all kinds of collected stuff
Names like these "metart_jinasa_aza_high_0003" are not actually consecutive, many numbers in between are skipped
Code:
You are not allowed to view this content until you register.
|
For those with 01.jpg, 02.jpg, ... you can use this here and execute it in PowerShell:
$DownloadPath = "C:\temp\download"
$BaseUrl = "http://m.cdn.blog.hu/7e/7ente7szer"
$Directories = @(
"Alex","Alice","Alice2","Alice3","Alice4","Angelik a_Jennifer","Antea","Apolonia_Carolina_Alberto",
"April2","Ashley2","Aubrey3","August","Aurelly_Kri stall_Wendy","Bailey","Bellavitana","Bexie",
"Cameron2","Carre","Carre2","Cassie","Cherry","Dai sy3","Denise","Dido","Eliana","Fay","Feeona",
"Hayden2","Jenna_Aubrey","Jess","Jessi","Jessi_Kri stal_Gold","Jessica2","Jessica3","Jessica4",
"Jessica5","Jessica6","Katya","Kenna","Kenna2","Ki ki","Kim","Lauren","Lauren2","Lauren3",
"Lenayna","Lera","Lilly","Lily2","Lily3","Lily4"," Lily5","Lisabelle","Liza","Lola","Lola2",
"Macy","Madi","Maggie","Malena","Marta","Mia3","Mi a4","Milena","Nalla","Nataly","Natasha",
"Natasha2","Natasha3","Nikia","Riley_Anikka","Rita ","Samantha","Samia","Scarlet","Scarlet2",
"Staci","Staci2","Stella","Tracy4","Valentina","Ve runka","ally","dita","eden","tasha","viola"
)
# Create download directory if it doesn't exist
if (-not (Test-Path $DownloadPath)) {
New-Item -ItemType Directory -Path $DownloadPath | Out-Null
}
foreach ($dir in $Directories) {
foreach ($i in 1..99) {
$fileName = "{0

2}.jpg" -f $i
$remoteFile = "$BaseUrl/$dir/$fileName"
$localFile = Join-Path $DownloadPath "$dir`_$fileName"
try {
# Check if file exists on the server
$response = Invoke-WebRequest -Uri $remoteFile -Method Head -ErrorAction Stop
if ($response.StatusCode -eq 200) {
Write-Host "Downloading: $remoteFile" -ForegroundColor Green
Invoke-WebRequest -Uri $remoteFile -OutFile $localFile -ErrorAction Stop
}
} catch {
# File does not exist or other error, skip
}
}
}
For the others you can modify the code snippet