Using the NAME instruction in PB9 I can MOVE all files except JPG files.
Using the MOVEFILE API I can MOVE all files except JPG files.
( Error 70 - Permission denied )
Using VBScript I can MOVE all files sucessfully.
Attributes on all JPG files are %Normal(0)
All JPG files are NOT blocked.
The problem exists on my WinXP and Vista systems.
( Normal file activity works - drap drop, etc.)
Any suggestions would be appreciated
Using the MOVEFILE API I can MOVE all files except JPG files.
( Error 70 - Permission denied )
Using VBScript I can MOVE all files sucessfully.
Code:
Set objFSO = CreateObject("Scripting.FileSystemObject") objFSO.MoveFile "C:\Tenderpaws\MyBunch\Sharlee\logo.jpg" , "C:\pbwin90\samples\ddt\filefind\old\logo.jpg"
All JPG files are NOT blocked.
The problem exists on my WinXP and Vista systems.
( Normal file activity works - drap drop, etc.)
Any suggestions would be appreciated
Comment