I have a question about spaces in directory names.
If I want to use mkdir something, everything works out, but in this case:
Code:
#!/usr/local/bin/perl
#
use warnings;
$homedir = "C:/SCRIPT/CJ0249A.1/\"Project Information\"";
$file = "$homedir/exist.txt";
if (-e "$file")
{
print ("it exists");