gpt4 book ai didi

c# - 创建一个文件夹而不在代码中给出硬核路径

转载 作者:太空宇宙 更新时间:2023-11-03 22:18:09 26 4
gpt4 key购买 nike

我需要在像 D:\New Folder 这样的文本框中给出路径后创建一个名为 log 的文件夹,而不在像 var _logFolderPath = @"D 这样的代码中给出核心路径:\新建文件夹\日志";然后我需要在该日志文件夹中创建两个文本文件 ba.txt 和 ra.txt

这是我的代码

 DirectoryInfo Folder = new DirectoryInfo(textboxPath.Text);
var _logFolderPath =textboxPath.Text;
if (Folder.Exists)
if (!Directory.Exists(_logFolderPath)) Directory.CreateDirectory(_logFolderPath);

  using (var dest = File.CreateText(Path.Combine(_logFolderPath, line2 + ".txt")))

供引用 comparing two text files

最佳答案

如何将第 2 行更改为:

var _logFolderPath = Path.Combine(textboxPath.Text.Trim(), "log");

关于c# - 创建一个文件夹而不在代码中给出硬核路径,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/4256097/

26 4 0
Copyright 2021 - 2024 cfsdn All Rights Reserved 蜀ICP备2022000587号
广告合作:1813099741@qq.com 6ren.com