|
|
|
|
|
NetDiskList (Function) In french: NetListeDisque Lists the available disks: - on the FTP (File Transfer Protocol) or RPC (Remote Procedure Call) server powered by WINDEV,
- on the client computer.
Note: To enable or disable this function on an FTP/RPC server, use NetServerOption. ConnectRPC is int
ConnectRPC = NetConnect("148.61.125.245", RPCServer, "GUEST", "")
...
Info(NetDiskList(ConnectRPC))
Syntax
<Result> = NetDiskList([<Connection ID>])
<Result>: ANSI character string List of disks found on the server or on the client computer. This result has the following format:
Disk1 + TAB + Type1 + CR + Disk2 + TAB + Type2 + CR +... The different types of disks are as follows: | | CD | CD ROM | FD | Floppy drive | HD | Hard disk | NW | Network drive | RD | RAM disk | UN | Unknown type |
<Connection ID>: Optional integer Identifier of the connection for the client computer (returned by NetConnect). If this parameter is not specified, NetDiskList returns the list of available disks on the current computer.
This page is also available for…
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|