GenerateMetadata.SearchPath 方法
定義
重要
部分資訊涉及發行前產品,在發行之前可能會有大幅修改。 Microsoft 對此處提供的資訊,不做任何明確或隱含的瑕疵擔保。
在指定路徑中搜尋指定檔案。
此 API 支援此產品基礎結構,但無法直接用於程式碼之中。
public:
static int SearchPath(System::String ^ path, System::String ^ fileName, System::String ^ extension, int numBufferChars, System::String ^ buffer, cli::array <int> ^ filePart);
public static int SearchPath (string path, string fileName, string extension, int numBufferChars, string buffer, int[] filePart);
static member SearchPath : string * string * string * int * string * int[] -> int
Public Shared Function SearchPath (path As String, fileName As String, extension As String, numBufferChars As Integer, buffer As String, filePart As Integer()) As Integer
參數
- path
- String
要在其中搜尋檔案的路徑。
- fileName
- String
要搜尋的檔案名稱。
- extension
- String
在搜尋檔案時,要附加至檔案名稱的副檔名。
- numBufferChars
- Int32
接收有效路徑和檔案名稱的緩衝區大小。
- buffer
- String
緩衝區,用來接收找到檔案的路徑和檔案名稱。
- filePart
- Int32[]
變數,用來接收有效路徑和檔案名稱最後一個元件的位址。
傳回
如果搜尋成功,傳回值就是複製到 buffer
的字串長度。 如果搜尋失敗,則傳回值為 0。
備註
如需詳細資訊,請參閱 SearchPath 函式。