windows 在Linux下用python编写以DOS行结尾的文本文件

kdfy810k  于 2023-11-21  发布在  Windows
关注(0)|答案(6)|浏览(249)

我想使用运行在Linux上的python编写DOS/Windows行结尾为“\r\n”的文本文件。在我看来,一定有比手动将"\r\“n'在每一行的末尾或使用一个行结束转换工具。理想情况下,我希望能够做一些事情,如分配给os.linesep分隔符,我想在编写文件时使用。或指定行分隔符当我打开文件。

c3frrgcw

c3frrgcw1#

对于Python 2.6和更高版本,io模块中的open函数有一个可选的换行符参数,可以让您指定要使用的换行符。
举例来说:

  1. import io
  2. with io.open('tmpfile', 'w', newline='\r\n') as f:
  3. f.write(u'foo\nbar\nbaz\n')

字符串
将创建一个包含以下内容的文件:

  1. foo\r\n
  2. bar\r\n
  3. baz\r\n

brccelvz

brccelvz2#

你可以参考一下这个PEP
更新:
@OP,你可以尝试创建这样的东西

  1. import sys
  2. plat={"win32":"\r\n", 'linux':"\n" } # add macos as well
  3. platform=sys.platform
  4. ...
  5. o.write( line + plat[platform] )

字符串

z4bn682m

z4bn682m3#

只需编写一个file-like,它 Package 另一个file-like,并在写入时将\n转换为\r\n
举例来说:

  1. class ForcedCrLfFile(file):
  2. def write(self, s):
  3. super(ForcedCrLfFile, self).write(s.replace(r'\n', '\r\n'))

字符串

hmtdttj4

hmtdttj44#

这是我写的一个python脚本。它从给定的目录递归,用\r\n结尾替换所有的\n行结尾。像这样使用它:

  1. unix2windows /path/to/some/directory

字符串
它忽略文件夹中以“.”开头的文件。它还忽略它认为是二进制文件的文件,使用J.F.塞巴斯蒂安在this answer中给出的方法。您可以使用可选的正则表达式位置参数进一步过滤:

  1. unix2windows /path/to/some/directory .py$


这里是完整的脚本。为了避免疑问,我的部分是根据the MIT licence许可。

  1. #!/usr/bin/python
  2. import sys
  3. import os
  4. import re
  5. from os.path import join
  6. textchars = bytearray({7,8,9,10,12,13,27} | set(range(0x20, 0x100)) - {0x7f})
  7. def is_binary_string(bytes):
  8. return bool(bytes.translate(None, textchars))
  9. def is_binary_file(path):
  10. with open(path, 'rb') as f:
  11. return is_binary_string(f.read(1024))
  12. def convert_file(path):
  13. if not is_binary_file(path):
  14. with open(path, 'r') as f:
  15. text = f.read()
  16. print path
  17. with open(path, 'wb') as f:
  18. f.write(text.replace('\r', '').replace('\n', '\r\n'))
  19. def convert_dir(root_path, pattern):
  20. for root, dirs, files in os.walk(root_path):
  21. for filename in files:
  22. if pattern.search(filename):
  23. path = join(root, filename)
  24. convert_file(path)
  25. # Don't walk hidden dirs
  26. for dir in list(dirs):
  27. if dir[0] == '.':
  28. dirs.remove(dir)
  29. args = sys.argv
  30. if len(args) <= 1 or len(args) > 3:
  31. print "This tool recursively converts files from Unix line endings to"
  32. print "Windows line endings"
  33. print ""
  34. print "USAGE: unix2windows.py PATH [REGEX]"
  35. print "Path: The directory to begin recursively searching from"
  36. print "Regex (optional): Only files matching this regex will be modified"
  37. print ""
  38. else:
  39. root_path = sys.argv[1]
  40. if len(args) == 3:
  41. pattern = sys.argv[2]
  42. else:
  43. pattern = r"."
  44. convert_dir(root_path, re.compile(pattern))

展开查看全部
vnzz0bqm

vnzz0bqm5#

你可以写一个函数来转换文本然后写它。例如:

  1. def DOSwrite(f, text):
  2. t2 = text.replace('\n', '\r\n')
  3. f.write(t2)
  4. #example
  5. f = open('/path/to/file')
  6. DOSwrite(f, "line 1\nline 2")
  7. f.close()

字符串

am46iovg

am46iovg6#

如果你碰巧在Pandas中通过to_csv()函数编写你的.txt文件,你可以像the documentation中讨论的那样添加参数lineterminator = '\r\n'
范例:
df.to_csv('file_with_line_endings.txt', lineterminator = '\r\n')

相关问题