I am doing the following to create a directory on a Windows machine and eveytime I do, I creates it as "READ ONLY". I thought by putting the 0777 makes it writeable? What am I doing wrong here?
Thank you
Jim
Thank you
Jim
Code:
print "$DestFile does not exist - \n";
mkdir $DestFile, 0777 or die "can't create $DestFile: $!";
print "Created Directory\n";