/pygments/samples/stdlib/GetAvailableFileName.ahk

http://github.com/tinku99/ahklexers · AutoHotKey · 111 lines · 85 code · 12 blank · 14 comment · 2 complexity · f4f529a4df1251c1ec5da6ec2d9a0b85 MD5 · raw file

  1. ; Get next/free Available File Name by toralf
  2. ; http://www.autohotkey.com/forum/viewtopic.php?t=6297
  3. GetAvailableFileName( GivenFileName, GivenPath = "", StartID = 1 )
  4. {
  5. ;check if GivenPath exist and add "\" if necessary
  6. If GivenPath is not space
  7. {
  8. StringRight, LastChar, GivenPath, 1
  9. If ( LastChar <> "\" )
  10. GivenPath = %GivenPath%\
  11. If ( InStr(FileExist(GivenPath), "D") = 0 )
  12. {
  13. ErrorLevel = The given path >%GivenPath%< doesn't exist.
  14. Return 0
  15. }
  16. }
  17. ;check if StartID is reasonable
  18. If ( StartID < 0 Or Mod(StartID, 1) <> 0 )
  19. {
  20. ErrorLevel =
  21. (LTrim
  22. The StartID >%StartID%< is smaller then zero or not an integer.
  23. It has to be a positive integer.
  24. )
  25. Return 0
  26. }
  27. ;split GivenFileName with #
  28. StringSplit, NameArray, GivenFileName, #
  29. ;if GivenFileName doesn't contain # ...
  30. If NameArray0 < 2
  31. {
  32. ;check if GivenFileName exists
  33. If FileExist(GivenPath . GivenFileName)
  34. {
  35. ErrorLevel =
  36. (LTrim
  37. The given file >%GivenFileName%< does exist
  38. in path >%GivenPath%<.
  39. (if path is empty, it's the path of the script/exe)
  40. )
  41. Return 0
  42. }
  43. Else
  44. Return GivenPath . GivenFileName
  45. }
  46. ;check if StartID isn't too large
  47. If ( StrLen(StartID) > NameArray0 - 1 )
  48. {
  49. ErrorLevel =
  50. (LTrim
  51. The StartID >%StartID%< is too large
  52. for the filename >%GivenFileName%<.
  53. )
  54. Return 0
  55. }
  56. ;Search from StartID ...
  57. Loop
  58. {
  59. Number := A_Index + StartID - 1
  60. ;untill number is too large ...
  61. If ( StrLen(Number) > NameArray0 - 1 )
  62. {
  63. ErrorLevel =
  64. (LTrim
  65. All files exist for >%GivenFileName%<
  66. with all # between %StartID% and %Number%.
  67. )
  68. Return 0
  69. }
  70. ;otherwise fill number with leading zeros
  71. Loop, % NameArray0 - 1 - StrLen(Number) ;%
  72. Number = 0%Number%
  73. ;split number in an array
  74. StringSplit, NumberArray, Number
  75. ;mix and concatenate the names array with the numbers array
  76. FileName =
  77. Loop, %NameArray0%
  78. FileName := FileName . NameArray%A_Index% . NumberArray%A_Index%
  79. ;check if GivenFileName doesn't exist
  80. If not FileExist(GivenPath . FileName)
  81. Return GivenPath . FileName
  82. }
  83. }
  84. GetAvailableFileName_fast( GivenFileName, GivenPath = "", StartID = 1 )
  85. {
  86. StringSplit, NameArray, GivenFileName, #
  87. Loop
  88. {
  89. Number := A_Index + StartID - 1
  90. Loop, % NameArray0 - 1 - StrLen(Number) ;%
  91. Number = 0%Number%
  92. StringSplit, NumberArray, Number
  93. FileName =
  94. Loop, %NameArray0%
  95. FileName := FileName . NameArray%A_Index% . NumberArray%A_Index%
  96. If not FileExist(GivenPath . FileName)
  97. Return GivenPath . FileName
  98. }
  99. }