Fungsi PathIsRootA (shlwapi.h)
Menentukan apakah string jalur mengacu pada akar volume.
Sintaks
BOOL PathIsRootA(
[in] LPCSTR pszPath
);
Parameter
[in] pszPath
Jenis: LPCTSTR
Penunjuk ke string yang dihentikan null dengan panjang maksimum MAX_PATH yang berisi jalur yang akan divalidasi.
Menampilkan nilai
Jenis: BOOL
Mengembalikan TRUE jika jalur yang ditentukan adalah root, atau FALSE jika tidak.
Keterangan
Mengembalikan TRUE untuk jalur seperti "", "X:" atau "\\server\share". Jalur seperti ".. \path2" atau "\\server" mengembalikan FALSE.
Contoh
#include <windows.h>
#include <iostream.h>
#include "Shlwapi.h"
void main( void )
{
// String path name 1.
char buffer_1[ ] = "C:\\";
char *lpStr1;
lpStr1 = buffer_1;
// String path name 2.
char buffer_2[ ] = "path\\file";
char *lpStr2;
lpStr2 = buffer_2;
// Variable to get the return from "PathIsRoot".
int retval;
// Test case with path not absolute.
retval = PathIsRoot(lpStr1);
cout << "The return from function is :" << retval << endl;
cout << "The path does contain a root part :" << lpStr1 << endl;
// Test case with path absolute.
retval = PathIsRoot(lpStr2);
cout << "The return from function is :" << retval << endl;
cout << "The path does not contain part :" << lpStr2 << endl;
}
OUTPUT:
============
The return from function is :1
The path does contain a root part :C:\
The return from function is :0
The path does not contain part :path\file
============
Catatan
Header shlwapi.h mendefinisikan PathIsRoot sebagai alias yang secara otomatis memilih versi ANSI atau Unicode dari fungsi ini berdasarkan definisi konstanta pra-prosesor UNICODE. Mencampur penggunaan alias encoding-netral dengan kode yang tidak mengodekan-netral dapat menyebabkan ketidakcocokan yang mengakibatkan kesalahan kompilasi atau runtime. Untuk informasi selengkapnya, lihat Konvensi untuk Prototipe Fungsi.
Persyaratan
Klien minimum yang didukung | Windows 2000 Professional, Windows XP [hanya aplikasi desktop] |
Server minimum yang didukung | Windows 2000 Server [hanya aplikasi desktop] |
Target Platform | Windows |
Header | shlwapi.h |
Pustaka | Shlwapi.lib |
DLL | Shlwapi.dll (versi 4.71 atau yang lebih baru) |