Wilson WindowWare Tech Support

WinBatch WinBatch+Compiler WebBatch
Home | Tech Database | Tech BBS | White Papers | Purchase


1590 FileDelete Failed.

Keywords:    1590 FileDelete Failed.

Question:

I keep getting the error 1590 FileDelete Failed. I know the files are not in use when I execute the function, any ideas?

Answer:

One of the files is READ-ONLY. Use the function FileAttrSet to remove the Read-Only attributes on all the files...
DirChange("C:\Temp\")
FileList=FileItemize("*.*")
FileAttrSet(FileList,"r")
FileDelete(FileList)


Article ID:   W14353
Filename:   1590 FileDelete Failed.txt