在代码中使用Input()函数更改文件名的方法取决于所使用的编程语言和操作系统。以下是一些常见的编程语言和操作系统的示例:
import os
# 获取用户输入的新文件名
new_filename = input("请输入新文件名:")
# 获取当前文件路径
current_path = os.path.dirname(os.path.abspath(__file__))
# 获取当前文件的完整路径
current_file = os.path.join(current_path, "原文件名.txt")
# 构建新文件的完整路径
new_file = os.path.join(current_path, new_filename + ".txt")
# 重命名文件
os.rename(current_file, new_file)
推荐的腾讯云相关产品:腾讯云对象存储(COS) 产品介绍链接地址:https://cloud.tencent.com/product/cos
import java.io.File;
import java.util.Scanner;
public class FileRename {
public static void main(String[] args) {
// 获取用户输入的新文件名
Scanner scanner = new Scanner(System.in);
System.out.print("请输入新文件名:");
String newFilename = scanner.nextLine();
// 获取当前文件路径
String currentPath = new File("").getAbsolutePath();
// 获取当前文件的完整路径
String currentFile = currentPath + File.separator + "原文件名.txt";
// 构建新文件的完整路径
String newFile = currentPath + File.separator + newFilename + ".txt";
// 重命名文件
File file = new File(currentFile);
file.renameTo(new File(newFile));
}
}
推荐的腾讯云相关产品:腾讯云对象存储(COS) 产品介绍链接地址:https://cloud.tencent.com/product/cos
using System;
using System.IO;
class Program
{
static void Main()
{
// 获取用户输入的新文件名
Console.Write("请输入新文件名:");
string newFilename = Console.ReadLine();
// 获取当前文件路径
string currentPath = Directory.GetCurrentDirectory();
// 获取当前文件的完整路径
string currentFile = Path.Combine(currentPath, "原文件名.txt");
// 构建新文件的完整路径
string newFile = Path.Combine(currentPath, newFilename + ".txt");
// 重命名文件
File.Move(currentFile, newFile);
}
}
推荐的腾讯云相关产品:腾讯云对象存储(COS) 产品介绍链接地址:https://cloud.tencent.com/product/cos
请注意,以上示例仅展示了在Windows操作系统下使用Input()函数更改文件名的方法。在其他操作系统或编程语言中,具体的实现方式可能会有所不同。
领取专属 10元无门槛券
手把手带您无忧上云