我可以保存一個文件而不另存爲對話框嗎?用saveas對話框保存文件?
-1
A
回答
1
你提的問題是非常模糊的,但服用野生刺吧:
是的,只是使用的類在System.IO
namespace。例如,在FileStream
class documentation中有一個例子;引用它:
using System;
using System.IO;
using System.Text;
class Test
{
public static void Main()
{
string path = @"c:\temp\MyTest.txt";
// Delete the file if it exists.
if (File.Exists(path))
{
File.Delete(path);
}
//Create the file.
using (FileStream fs = File.Create(path))
{
AddText(fs, "This is some text");
AddText(fs, "This is some more text,");
AddText(fs, "\r\nand this is on a new line");
AddText(fs, "\r\n\r\nThe following is a subset of characters:\r\n");
for (int i=1;i < 120;i++)
{
AddText(fs, Convert.ToChar(i).ToString());
}
}
//Open the stream and read it back.
using (FileStream fs = File.OpenRead(path))
{
byte[] b = new byte[1024];
UTF8Encoding temp = new UTF8Encoding(true);
while (fs.Read(b,0,b.Length) > 0)
{
Console.WriteLine(temp.GetString(b));
}
}
}
private static void AddText(FileStream fs, string value)
{
byte[] info = new UTF8Encoding(true).GetBytes(value);
fs.Write(info, 0, info.Length);
}
}
@All:同樣,這是從文檔引用,而不是原始代碼。
1
當然。您可以使用StreamWriter類:
FileInfo t = new FileInfo("f.txt");
StreamWriter Tex =t.CreateText();
Tex.WriteLine("Hello");
Tex.close();
1
是的,請查看File類。
3
是的,但你必須有一個文件名。文件對話框僅用於確定寫入文件的好文件名。
2
當然,如果你知道你想保存的路徑。
您可以使用System.IO.File的方法,如WriteAllBytes,WriteAllLines或WriteAllText。
相關問題
- 1. 使用SaveAs對話框保存下載文件的vba代碼
- 2. 保存文件保存對話框
- 3. 如何使用保存文件保存文件對話框
- 4. 保存文件不使用保存文件對話框
- 5. 使用保存文件對話框保存xml文件
- 6. 使用Javascript保存文件對話框
- 7. OutPutTo消除SaveAs對話框
- 8. HTA文件保存對話框而不是打開對話框
- 9. 掛鉤保存文件對話框
- 10. android java - 保存文件對話框GUI
- 11. C#保存文件對話框錯誤
- 12. 在Jquery中保存文件對話框
- 13. 打開/保存文件對話框
- 14. 在griffon中保存文件對話框
- 15. 在MVC中保存文件對話框
- 16. 保存文件對話框確認
- 17. 文件打開/保存對話框
- 18. PHP「保存對話框」文件從
- 19. WebDriver:PhantomJSDriver和保存文件對話框
- 20. 強制文件保存對話框
- 21. 保存文件對話框不出現
- 22. 在Tkinter中保存文件對話框
- 23. 文件打開/保存對話框
- 24. 保存沒有對話框的文件
- 25. jquery文件保存爲對話框
- 26. 打開並保存文件對話框
- 27. 保存文件用的JFileChooser保存對話框
- 28. 使用保存對話框保存已創建的XML文件
- 29. 保存對話框
- 30. 保存對話框
有或沒有? – Bolu 2010-11-22 12:56:13
實際上,「另存爲」對話框與*保存*(創建/寫入/覆蓋/附加)文件的行爲很少有關。 – Ani 2010-11-22 12:57:41