Welcome!

By registering with us, you'll be able to discuss, share and private message with other members of our community.

SignUp Now!

Recent content by ilion

  1. I

    TCC/LE 13.0 error with long file names and quotes

    I have found a workaround for the back quote problem that has worked for my purposes by replacing the back quote with a question mark and using the wildcard in further commands: for %i in (*.*) do gosub process quit :process setdos /x-7 set filename=%@replace[`,?,%i] setdos /x+7 ...
  2. I

    TCC/LE 13.0 error with long file names and quotes

    just found a typo in the post: Example (UNC path length 140 chars, file name length 120 chars): for %i in ("{long UNC path}\*.*") echo %@attrib["%i"] output is correct for %i in ("{long UNC path}\*.*") echo %@filesize["%i"] result is -1
  3. I

    TCC/LE 13.0 error with long file names and quotes

    We are trying to solve a couple of problem within a large file sytem (more than 30 milion files, more than 100,000 directories) using TCC (TCC LE 13.00.21 x64 Windows 7 [Version 6.1.7601]). Using TCC we are running into two major problems that we cannot solve so far: 1. Errors on long file...
Back
Top