Is there a way to rename the file in a FTP directory?
I'm streaming live images from computer to FTP, but problem is that when it uploads the image to FTP it making instant replacement of a file. I want to firstly upload image with temporary name and then make a rename to live.jpg. It's gonna be like cached file uploading.
while($true)
{
$i++
$File = "c:liveemp.jpg"
$ftp = "ftp://username:[email protected]/camera/temp.jpg"
$webclient = New-Object System.Net.WebClient
$uri = New-Object System.Uri($ftp)
$webclient.UploadFile($uri, $File)
}
How can I use this in script properly ?
Rename-Item ..cameraemp.jpg live.jpg
Thanx!
question from:
https://stackoverflow.com/questions/65945060/rename-files-on-remote-ftp-using-powershell 与恶龙缠斗过久,自身亦成为恶龙;凝视深渊过久,深渊将回以凝视…