Jaka funkcja do utworzenia nowego katalogu (eVC++ 4.0)???

  • 1 Odpowiedzi
  • 1005 Wyświetleń

0 użytkowników i 1 Gość przegląda ten wątek.

Jaka funkcja do utworzenia nowego katalogu (eVC++ 4.0)???
« dnia: Marzec 23, 2006, 14:05:28 »
Witam.

Pytanie moje kieruje do was gdyż mam pewien problem (jak w temacie). Wiem że istnieje MSDN ale niestety nie bardzo mi pomaga. Wiem również że istnieje funkcja CreateDirectory(). Byłbym bardzo wdzięczny jakby ktoś miły podał linka do przykładu działającego lub po prostu podał część kodu w poście.

W MSDN do eVC++ 4.0 jest cos takiego ale przykładu nie ma  :(

This function creates a new directory. If the underlying file system supports security on files and directories, the function applies a specified security descriptor to the new directory.

A RAPI version of this function exists, and it is named CeCreateDirectory (RAPI).

BOOL CreateDirectory(
  LPCTSTR lpPathName,
  LPSECURITY_ATTRIBUTES lpSecurityAttributes
);
Parameters
lpPathName
[in] Long pointer to a null-terminated string that specifies the path of the directory to be created.
There is a default string size limit for paths of MAX_PATH characters. This limit is related to how the CreateDirectory function parses paths.

lpSecurityAttributes
[in] Ignored; set to NULL.
Return Values
Nonzero indicates success. Zero indicates failure. To get extended error information, call GetLastError.

Remarks
Some file systems, such as NTFS file system, support compression or encryption for individual files and directories. On volumes formatted for such a file system, a new directory inherits the compression and encryption attributes of its parent directory.

Requirements
OS Versions: Windows CE 1.0 and later.
Header: Winbase.h.
Link Library: Coredll.lib.


Dodatkowo kolejne lamerskie pytanie. Mianowicie chodzi mi o wytłumaczenie linkowania biblioteki jak wyżej. Jak ją zlinkowac do projektu czy pliku??

Pozdrawiam.

*

Offline fp

  • **
  • 113
    • http://pdaclub.pl/forum/index.php?action=search
Jaka funkcja do utworzenia nowego katalogu (eVC++ 4.0)???
« Odpowiedź #1 dnia: Marzec 24, 2006, 10:56:07 »
przykład użycia:
    CreateDirectory( L"\\dupa", NULL );

linkować dodatkowo nie trzeba, coredll.lib jest w bibliotekach domyślnych.