我们有用户将他们桌面上的快捷方式文件重命名为我们的应用程序。如果应用程序的图标发生变化,基于目标路径删除/修改快捷方式的最佳方法是什么?换句话说,我很难找到文件名,因为它一直在变化。
问问题
1731 次
3 回答
1
您应该使用FileSystemWatcher类:
侦听文件系统更改通知并在目录或目录中的文件更改时引发事件。
事实上,您可以利用FileSystemWatcher.Changed
, FileSystemWatcher.Created
, FileSystemWatcher.Renamed
,FileSystemWatcher.Deleted
事件来控制您的文件。
这是 MSDN 的一个例子:
public static void Main()
{
// Create a new FileSystemWatcher and set its properties.
FileSystemWatcher watcher = new FileSystemWatcher();
watcher.Path = "mypath";
/* Watch for changes in LastAccess and LastWrite times, and
the renaming of files or directories. */
watcher.NotifyFilter = NotifyFilters.LastAccess | NotifyFilters.LastWrite
| NotifyFilters.FileName | NotifyFilters.DirectoryName;
// Only watch text files.
watcher.Filter = "*.txt";
// Add event handlers.
watcher.Changed += new FileSystemEventHandler(OnChanged);
watcher.Created += new FileSystemEventHandler(OnChanged);
watcher.Deleted += new FileSystemEventHandler(OnChanged);
watcher.Renamed += new RenamedEventHandler(OnRenamed);
// Begin watching.
watcher.EnableRaisingEvents = true;
// Wait for the user to quit the program.
Console.WriteLine("Press \'q\' to quit the sample.");
while(Console.Read()!='q');
}
// Define the event handlers.
private static void OnChanged(object source, FileSystemEventArgs e)
{
// Specify what is done when a file is changed, created, or deleted.
Console.WriteLine("File: " + e.FullPath + " " + e.ChangeType);
}
private static void OnRenamed(object source, RenamedEventArgs e)
{
// Specify what is done when a file is renamed.
Console.WriteLine("File: {0} renamed to {1}", e.OldFullPath, e.FullPath);
}
于 2012-07-16T21:00:04.980 回答
0
要删除文件,请使用System.IO.File.Delete方法
要修改文件,您可以使用System.IO.File.AppendText方法
在下面的评论后更新:
请使用 ShellClass 创建或修改快捷方式您还需要使用 Environment.SpecialFolder.DesktopDirectory 从桌面获取特殊目录
可以在这里找到一个非常好的示例逐步显示http://www.codeproject.com/Articles/146757/Add-Remove-Startup-Folder-Shortcut-to-Your-App
于 2012-07-16T20:36:12.270 回答
0
重命名快捷方式不会修改目标路径,但是,我知道在 c# 中使用快捷方式的最佳方法是使用IwshRuntimeLibrary
.
于 2012-07-16T20:49:24.707 回答