05-19-2006 10:39 AM
05-21-2006 02:36 AM
Which type of access are you referring to? CVI provides several ways to access data on networks and on Internet.
Normal file functions can work on network drives, for example:
char file[MAX_PATHNAME_LEN];
FILE *fh = NULL;
sprintf (file, "\134\134%s\134%s\134myFile.txt", myServer, myPath);
// results in "\\myServer\myPath\myFile.txt"
fh = fopen (file, "rb+");
and so on...
But you can use other technologies to access those data: DataSocket for example permits you to download and upload files from servers, next there is a whole Internet lbrary for accessing remote data and finally CVI supports windows API functions for managing files stored on ftp or http servers.
So, you have several ways for accessing your data... I hope these hints can help you a little, if not please give us some detail more on your problem so that someone can help you in a more specific way.
Roberto