SetupApi文件队列函数大全
2021-11-19
56
0
使用setup函数,可以为各种操作对文件进行排队。可以为复制、重命名和删除文件建立文件队列。通常,应用程序将整个安装所需的所有文件操作排队,然后“提交”队列,以便在单个批中执行操作。
Function | Description |
---|---|
SetupCloseFileQueue | Destroys a file queue together with any uncommitted file operations. |
SetupCommitFileQueue | Commits (performs) all queued operations. |
SetupOpenFileQueue | Creates and returns a handle to a file queue. |
SetupPromptReboot | Prompts the user to restart his or her computer, if necessary. |
SetupQueueCopy | Queues a specified file for copying. |
SetupQueueCopyIndirect | Queues a specified file for copying, and provides file location and security information. |
SetupQueueCopySection | Queues the files in a specified INF file section for copying. |
SetupQueueDefaultCopy | Queues a specified file for copying, using default source and destination settings contained in the INF file. |
SetupQueueDelete | Queues a specified file for deletion. |
SetupQueueDeleteSection | Queues the files in an INF file section for deletion. |
SetupQueueRename | Queues a specified file for renaming. |
SetupQueueRenameSection | Queues the files in an INF section for renaming. |
SetupScanFileQueue | Scans a file queue and performs a specified operation on each queue entry. |
SetupSetPlatformPathOverride | Sets the value that is used for overriding the default platform-specific source path. |