Questions tagged «file-handling»

9
如何移动文件?
我查看了Python os界面,但无法找到移动文件的方法。我将如何$ mv ...在Python中做相当于? >>> source_files = '/PATH/TO/FOLDER/*' >>> destination_folder = 'PATH/TO/FOLDER' >>> # equivalent of $ mv source_files destination_folder



7
如何使用C#查找和替换文件中的文本
到目前为止我的代码 StreamReader reading = File.OpenText("test.txt"); string str; while ((str = reading.ReadLine())!=null) { if (str.Contains("some text")) { StreamWriter write = new StreamWriter("test.txt"); } } 我知道如何查找文本,但是我不知道如何用自己的文本替换文件中的文本。

9
写没有字节顺序标记(BOM)的文本文件吗?
我正在尝试使用带有UTF8编码的VB.Net创建文本文件,而没有BOM。谁能帮我,怎么做? 我可以使用UTF8编码写入文件,但是如何从其中删除字节顺序标记? edit1:我已经尝试过这样的代码; Dim utf8 As New UTF8Encoding() Dim utf8EmitBOM As New UTF8Encoding(True) Dim strW As New StreamWriter("c:\temp\bom\1.html", True, utf8EmitBOM) strW.Write(utf8EmitBOM.GetPreamble()) strW.WriteLine("hi there") strW.Close() Dim strw2 As New StreamWriter("c:\temp\bom\2.html", True, utf8) strw2.Write(utf8.GetPreamble()) strw2.WriteLine("hi there") strw2.Close() 1.html仅使用UTF8编码创建,而2.html使用ANSI编码格式创建。 简化方法-http: //whatilearnttuday.blogspot.com/2011/10/write-text-files-without-byte-order.html

7
如何一次一行一行地读取整个文本文件?
我在一个介绍文件的教程中(如何读写文件) 首先,这不是家庭作业,这只是我寻求的一般帮助。 我知道如何一次阅读一个单词,但我不知道如何一次阅读一行或如何阅读整个文本文件。 如果我的文件包含1000个单词怎么办?阅读每个单词是不切实际的。 我的文本文件名为(读取)包含以下内容: 我喜欢玩游戏,喜欢阅读,我有两本书 到目前为止,这是我已经完成的工作: #include <iostream> #include <fstream> using namespace std; int main (){ ifstream inFile; inFile.open("Read.txt"); inFile >> 有没有可能一次读取整个文件的方法,而不是分别读取每一行或每个单词?
By using our site, you acknowledge that you have read and understand our Cookie Policy and Privacy Policy.
Licensed under cc by-sa 3.0 with attribution required.