View Single Post
  #2  
Old 13-05-2018, 13:18
elit elit is offline
Registered User
 
Join Date: Jun 2017
Location: sun
Posts: 265
Thanks: 190
Thanked 325 Times in 119 Posts
elit is on a distinguished road
Quote:
Originally Posted by FitGirl View Post
Thanks for the tool, it's faster than SFK.
Glad you found it to be helpful FG, yes it should be with the speed "to the core" as I code exclusively in: (get ready)
"Pure-Superior-Master-Race C" language - aka PSMRC. Hehe.

Btw:
When you use -ooff=-1 to read offset from input file name, you can use either full path:
Code:
C:\aaa\343432
or relative:
Code:
343432, aaa\343432
You can use double quotes for either:
Code:
"C:\aaa\343432" or "343432"
You can use single extension or multiple:
Code:
343432.wem or 343432.raw.wem or 343432._raw_wem.org or whatever you want
It will always strip double quotes from path if any, then path itself(looking for either '\\' or '/' so it support Unix paths in Win) and then convert pure filename up to first '.' to integer offset and skip everything after it. And path itself(aka dirs) can contain '.' characters thats not problem.

Last edited by elit; 14-05-2018 at 03:55.
Reply With Quote