forked from bcpierce00/unison
-
Notifications
You must be signed in to change notification settings - Fork 0
/
Copy pathfileutil.ml
38 lines (32 loc) · 1.32 KB
/
fileutil.ml
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
(* Unison file synchronizer: src/fileutil.ml *)
(* Copyright 1999-2020, Benjamin C. Pierce
This program is free software: you can redistribute it and/or modify
it under the terms of the GNU General Public License as published by
the Free Software Foundation, either version 3 of the License, or
(at your option) any later version.
This program is distributed in the hope that it will be useful,
but WITHOUT ANY WARRANTY; without even the implied warranty of
MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
GNU General Public License for more details.
You should have received a copy of the GNU General Public License
along with this program. If not, see <http://www.gnu.org/licenses/>.
*)
(* Convert backslashes in a string to forward slashes. Useful in Windows. *)
let backslashes2forwardslashes s0 =
try
ignore(String.index s0 '\\'); (* avoid alloc if possible *)
let n = String.length s0 in
let s = Bytes.create n in
for i = 0 to n-1 do
let c = String.get s0 i in
if c = '\\'
then Bytes.set s i '/'
else Bytes.set s i c
done;
Bytes.to_string s
with Not_found -> s0
let rec removeTrailingSlashes s =
let len = String.length s in
if len>0 && String.get s (len-1) = '/'
then removeTrailingSlashes (String.sub s 0 (len-1))
else s