Help for this page

Select Code to Download


  1. or download this
    
    dir "C:\Local Publish\images"  #OK
    
  2. or download this
    
    perl -e " $dir = '\"C:\Local Publish\images\"'; system qq(dir $dir  )"
    +  #OK
    
  3. or download this
    
    dir "C:/Local Publish/images"   #OK
    
  4. or download this
    
    perl -e " $dir = '\"C:/Local Publish/images\"'; system qq(dir $dir  )"
    +  #ok
    
  5. or download this
    
    perl -e " $img = 'images';$dir = '\"C:/Local Publish/'.$img.'\"'; syst
    +em qq(dir $dir  )"