Hello all
I would like to set up a script which determines whether any file is in a specific folder
this is what I have so far,
I just dont know the macro for "any file", and it seems as though *.* didnt work.
any help would be amazing
I would like to set up a script which determines whether any file is in a specific folder
this is what I have so far,
[ autoit ]
if not FileExists (@UserProfileDir & "\Copy Folder\") Then DirCreate(@UserProfileDir & "\Copy Folder\") EndIf if FileExists (@UserProfileDir & "\Copy Folder\*.*") Then $string = StringSplit(@UserProfileDir & "\Copy Folder\*.*", "\") MsgBox(0, "", $string[5]) EndIf
I just dont know the macro for "any file", and it seems as though *.* didnt work.
any help would be amazing