Added a second script to find paths with above 260 characters.

This commit is contained in:
2015-04-01 07:52:32 -04:00
parent cbb5de439a
commit 7f92619623
6 changed files with 56 additions and 7 deletions

View File

@@ -12,4 +12,10 @@ class Filecreate
openFile = File.open(self.filename,"a")
return openFile
end
def writeWindowsFilePath(whatToWrite)
whatToWrite = whatToWrite.gsub("/","\\")
self.open.puts(whatToWrite)
self.open.close
end
end