获取系统中可用的驱动器列表,C#源代码[DllImport("shell32")] private static extern int SHGetFileInfo(string pszPath, int dwFileAttributes, ref SHFILEINFO psfi, int cbFileInfo, int uFlags); const int SHGFI_ICON = 0x0100; const int SHGFI_LARGEICON = 0x0000;
Interop.Shell32.dll 1.2版本,
var dirName = Path.GetDirectoryName(strFileName);
var songName = Path.GetFileName(strFileName);
var songPath = FileManager.CopyFileToPresentation(strFileName);
var sh = n
本文实例讲述了C#使用shell32获取文件属性的方法。分享给大家供大家参考。具体实现方法如下:
using System;
using System.Collections.Generic;
using System.Linq;
using System.Text;
using Shell32;
namespace GetFileCreator
{
class Program
{
static void Main(string[] args)
{
//要获取属性的文件路径