G
Guest
Hi.
I'm fairly new to C#, and have had some luck getting it to do what I want
to, but something I could do with bash shell scripting is escaping me.
Bash has a tool called "uniq", and it can take a list and just take out
unique entries. I am trying to create something that will take a list of Zip
files whose names can be similar (groups of files such as
xlsfile1.zip....xlsfile9.zip) and allow me to group them together in some way
to use in file operations.
My hope is that I can move files that are alike into a folder called
"xlsfile" and then use something to unzip *.zip.
I know this wouldn't be an issue if I always knew what would be the same,
but since that's always different, I need some generic way to *sense* what
parts are the same but completely unique from unrelated files.
I'm sorry if this is convoluded or makes little sense, but I just didn't
know how else to describe my issue.
Thanks
I'm fairly new to C#, and have had some luck getting it to do what I want
to, but something I could do with bash shell scripting is escaping me.
Bash has a tool called "uniq", and it can take a list and just take out
unique entries. I am trying to create something that will take a list of Zip
files whose names can be similar (groups of files such as
xlsfile1.zip....xlsfile9.zip) and allow me to group them together in some way
to use in file operations.
My hope is that I can move files that are alike into a folder called
"xlsfile" and then use something to unzip *.zip.
I know this wouldn't be an issue if I always knew what would be the same,
but since that's always different, I need some generic way to *sense* what
parts are the same but completely unique from unrelated files.
I'm sorry if this is convoluded or makes little sense, but I just didn't
know how else to describe my issue.
Thanks