广告位联系
返回顶部
分享到

Python实现Window路径格式转换为Linux路径格式

python 来源:互联网 作者:佚名 发布时间:2024-07-03 21:59:24 人浏览
摘要

将其代码放到服务器上,批量的路径格式需要进行转换,对应就需要一个脚本 实战中演示Window格式转换为Linux(批量进行局部转换) 1. 局部转换 适用单个文件的路径格式 1 2 3 4 5 6 7 8 # 示例路

将其代码放到服务器上,批量的路径格式需要进行转换,对应就需要一个脚本

实战中演示Window格式转换为Linux(批量进行局部转换)

1. 局部转换

适用单个文件的路径格式

1

2

3

4

5

6

7

8

# 示例路径

linux_path = "/home/user/documents/project"

 

# 将Linux路径中的斜杠转换为Windows路径格式

windows_path = linux_path.replace("/", "\\")

 

# 打印结果

print(windows_path)  # 输出: \home\user\documents\project

截图如下:

整体的路径转换成想要的

1

2

3

4

5

6

7

8

# 示例路径

linux_path = "/home/user/documents/project"

 

# 将Linux路径转换为Windows路径

windows_path = linux_path.replace("/home/user/documents", "C:\\Users\\user\\Documents")

 

# 打印结果

print(windows_path)  # 输出: C:\Users\user\Documents\project

截图如下:

2. 批量转换

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

22

def replace_paths_in_file(input_file, output_file, old_path, new_path):

    # 读取输入文件内容

    with open(input_file, 'r') as file:

        file_content = file.read()

 

    # 转换路径

    updated_content = file_content.replace(old_path, new_path)

 

    # 写入到输出文件

    with open(output_file, 'w') as file:

        file.write(updated_content)

 

# 示例文件路径

input_file = 'input.txt'

output_file = 'output.txt'

 

# 示例路径

old_linux_path = "/home/user/documents"

new_windows_path = "C:\\Users\\user\\Documents"

 

# 调用函数进行转换

replace_paths_in_file(input_file, output_file, old_linux_path, new_windows_path)

如果是未知的路径,则对应需要使用正则表达式进行处理

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

import re

 

def replace_paths_in_file(input_file, output_file):

    # 定义正则表达式来匹配Linux路径

    linux_path_pattern = re.compile(r'(/[^/ ]*)+')

     

    def linux_to_windows_path(linux_path):

        # 将Linux路径中的斜杠转换为Windows路径格式

        windows_path = linux_path.replace("/", "\\")

        # 例如,如果需要将某个特定的根路径转换为Windows的根路径

        windows_path = windows_path.replace("\\home\\user\\documents", "C:\\Users\\user\\Documents")

        return windows_path

     

    # 读取输入文件内容

    with open(input_file, 'r') as file:

        file_content = file.read()

     

    # 使用正则表达式转换所有匹配的路径

    updated_content = linux_path_pattern.sub(lambda match: linux_to_windows_path(match.group(0)), file_content)

     

    # 写入到输出文件

    with open(output_file, 'w') as file:

        file.write(updated_content)

 

# 示例文件路径

input_file = 'input.txt'

output_file = 'output.txt'

 

# 调用函数进行转换

replace_paths_in_file(input_file, output_file)

3. 实战Demo

原本在Window上跑的Yolov5,对应的路径不是Linux,如果要放到Linux上跑,需要转换为Linux的路径
但是他的标签路径起码几千条(VOC的数据集标签)

对应的代码如下:(只需批量的转换局部即可)

1

2

3

4

5

6

7

8

9

10

11

12

13

14

15

16

17

18

19

20

21

def convert_path(windows_path):

    # 转换基路径

    linux_path = windows_path.replace('F:\\AI\\datasets\\VOC2007', '/home/l228/huoyanhao/yolov5/datasets/VOC/images')

     

    # 将路径分隔符从反斜杠和混合斜杠转换为统一的斜杠

    linux_path = linux_path.replace('\\', '/')

     

    return linux_path

 

def batch_convert_paths(input_file, output_file):

    with open(input_file, 'r') as infile, open(output_file, 'w') as outfile:

        for line in infile:

            windows_path = line.strip()

            linux_path = convert_path(windows_path)

            outfile.write(linux_path + '\n')

 

# 输入文件和输出文件路径

input_file = 'windows_paths.txt'

output_file = 'linux_paths.txt'

 

batch_convert_paths(input_file, output_file)

将其转换成吱声想要的路径,截图如下:


版权声明 : 本文内容来源于互联网或用户自行发布贡献,该文观点仅代表原作者本人。本站仅提供信息存储空间服务和不拥有所有权,不承担相关法律责任。如发现本站有涉嫌抄袭侵权, 违法违规的内容, 请发送邮件至2530232025#qq.cn(#换@)举报,一经查实,本站将立刻删除。
原文链接 :
相关文章
  • 本站所有内容来源于互联网或用户自行发布,本站仅提供信息存储空间服务,不拥有版权,不承担法律责任。如有侵犯您的权益,请您联系站长处理!
  • Copyright © 2017-2022 F11.CN All Rights Reserved. F11站长开发者网 版权所有 | 苏ICP备2022031554号-1 | 51LA统计