免费注册 查看新帖 |

Chinaunix

  平台 论坛 博客 文库
最近访问板块 发新帖
查看: 1436 | 回复: 7
打印 上一主题 下一主题

关于客户端ftp下载的一个问题! [复制链接]

论坛徽章:
0
跳转到指定楼层
1 [收藏(0)] [报告]
发表于 2003-10-23 14:18 |只看该作者 |倒序浏览
我想请问一下:
    absoluteFTP,CuteFtp这样的软件,在下载文件的时候,和一般的在IE里边“复制到文件夹”的方式是不一样的吧。前者在下载文件的同时,是可以读的。比如rm文件,是可以用real播放的。但后者不可以。而且我看了大部分有源码的ftp客户端,它们都是这种写的时候不能读的。
    所以,我的问题是,前者是如何实现的呢?CFtpConnection有一个GetFile的方法,是不是在这里边设定什么参数?

论坛徽章:
0
2 [报告]
发表于 2003-10-23 15:24 |只看该作者

关于客户端ftp下载的一个问题!

各位,是我没说清楚吗?帮帮忙!

论坛徽章:
0
3 [报告]
发表于 2003-10-24 14:10 |只看该作者

关于客户端ftp下载的一个问题!

帮帮忙啊~各位!帮忙顶一下也可以阿!谢谢了!

论坛徽章:
0
4 [报告]
发表于 2003-10-24 15:00 |只看该作者

关于客户端ftp下载的一个问题!

是不是用共享方式创建文件,一边往里写,一边其它程序可以读出已经写入的部分?

论坛徽章:
0
5 [报告]
发表于 2003-10-27 12:25 |只看该作者

关于客户端ftp下载的一个问题!

[quote]原帖由 "思一克"]是不是用共享方式创建文件,一边往里写,一边其它程序可以读出已经写入的部分?[/quote 发表:


我想我想要得就是你说的这个效果,可我不知道具体怎么弄。我的实在Windows下的。

论坛徽章:
1
2015年辞旧岁徽章
日期:2015-03-03 16:54:15
6 [报告]
发表于 2003-10-27 16:03 |只看该作者

关于客户端ftp下载的一个问题!

windows 下,
_sopen(filename, O_RDWR | O_BINARY, SH_DENYNO, S_IREAD | S_IWRITE );
这样就可以打开一个文件,并且允许其它文件共享打开。

下面是 MSDN 对这个函数的说明:
  1.   Run-Time Library Reference   

  2. _sopen, _wsopenSee Also
  3. Low-level I/O Routines | _close | _creat | fopen | _fsopen | _open
  4. Requirements
  5. Routine Required header Optional headers Compatibility
  6. _sopen <io.h>; <fcntl.h>;, <sys/types.h>;, <sys/stat.h>;, <share.h>; Win 98, Win Me, Win NT, Win 2000, Win XP
  7. _wsopen <io.h>; or <wchar.h>; <fcntl.h>;, <sys/types.h>;, <sys/stat.h>;, <share.h>; Win NT, Win 2000, Win XP

  8. For additional compatibility information, see Compatibility in the Introduction.

  9. Libraries

  10. All versions of the C run-time libraries.
  11. Open a file for sharing.

  12. int _sopen(
  13.    const char *filename,
  14.    int oflag,
  15.    int shflag [,
  16.    int pmode ]
  17. );
  18. int _wsopen(
  19.    const wchar_t *filename,
  20.    int oflag,
  21.    int shflag [,
  22.    int pmode ]
  23. );
  24. Parameters
  25. filename
  26. Filename.
  27. oflag
  28. Type of operations allowed.
  29. shflag
  30. Type of sharing allowed.
  31. pmode
  32. Permission setting.
  33. Return Value
  34. Each of these functions returns a file handle for the opened file. A return value of –1 indicates an error, in which case errno is set to one of the following values:

  35. EACCES
  36. Given path is a directory, or file is read-only, but an open-for-writing operation was attempted.
  37. EEXIST
  38. _O_CREAT and _O_EXCL flags were specified, but filename already exists.
  39. EINVAL
  40. Invalid oflag or shflag argument.
  41. EMFILE
  42. No more file handles available.
  43. ENOENT
  44. File or path not found.
  45. See _doserrno, errno, _sys_errlist, and _sys_nerr for more information on these, and other, return codes.

  46. Remarks
  47. The _sopen function opens the file specified by filename and prepares the file for shared reading or writing, as defined by oflag and shflag. _wsopen is a wide-character version of _sopen; the filename argument to _wsopen is a wide-character string. _wsopen and _sopen behave identically otherwise.

  48. Generic-Text Routine Mappings

  49. TCHAR.H routine  _UNICODE & _MBCS not defined _MBCS defined _UNICODE defined
  50. _tsopen _sopen _sopen _wsopen

  51. The integer expression oflag is formed by combining one or more of the following manifest constants, defined in the file FCNTL.H. When two or more constants form the argument oflag, they are combined with the bitwise-OR operator ( | ).

  52. _O_APPEND
  53. Repositions file pointer to end of file before every write operation.
  54. _O_BINARY
  55. Opens file in binary (untranslated) mode. (See fopen for a description of binary mode.)
  56. _O_CREAT
  57. Creates and opens new file for writing. Has no effect if file specified by filename exists. The pmode argument is required when _O_CREAT is specified.
  58. _O_CREAT | _O_SHORT_LIVED
  59. Create file as temporary and if possible do not flush to disk. The pmode argument is required when _O_CREAT is specified.
  60. _O_CREAT | _O_TEMPORARY
  61. Create file as temporary; file is deleted when last file handle is closed. The pmode argument is required when _O_CREAT is specified.
  62. _O_CREAT | _O_EXCL
  63. Returns error value if file specified by filename exists. Applies only when used with _O_CREAT.
  64. _O_NOINHERIT
  65. Prevents creation of a shared file handle.
  66. _O_RANDOM
  67. Specifies primarily random access from disk.
  68. _O_RDONLY
  69. Opens file for reading only; cannot be specified with _O_RDWR or _O_WRONLY.
  70. _O_RDWR
  71. Opens file for both reading and writing; cannot be specified with _O_RDONLY or _O_WRONLY.
  72. _O_SEQUENTIAL
  73. Specifies primarily sequential access from disk
  74. _O_TEXT
  75. Opens file in text (translated) mode. (For more information, see Text and Binary Mode File I/O and fopen.)
  76. _O_TRUNC
  77. Opens file and truncates it to zero length; the file must have write permission. You cannot specify this flag with _O_RDONLY. _O_TRUNC used with _O_CREAT opens an existing file or creates a new file.
  78. Note   The _O_TRUNC flag destroys the contents of the specified file.
  79. _O_WRONLY
  80. Opens file for writing only; cannot be specified with _O_RDONLY or _O_RDWR.
  81. To specify the file access mode, you must specify either _O_RDONLY, _O_RDWR, or _O_WRONLY. There is no default value for the access mode.

  82. The argument shflag is a constant expression consisting of one of the following manifest constants, defined in SHARE.H.

  83. _SH_DENYRW
  84. Denies read and write access to file
  85. _SH_DENYWR
  86. Denies write access to file
  87. _SH_DENYRD
  88. Denies read access to file
  89. _SH_DENYNO
  90. Permits read and write access
  91. The pmode argument is required only when you specify _O_CREAT. If the file does not exist, pmode specifies the file's permission settings, which are set when the new file is closed the first time. Otherwise pmode is ignored. pmode is an integer expression that contains one or both of the manifest constants _S_IWRITE and _S_IREAD, defined in SYS\STAT.H. When both constants are given, they are combined with the bitwise-OR operator. The meaning of pmode is as follows:

  92. _S_IWRITE
  93. Writing permitted
  94. _S_IREAD
  95. Reading permitted
  96. _S_IREAD | _S_IWRITE
  97. Reading and writing permitted
  98. If write permission is not given, the file is read-only. Under Windows 98/Me and Windows NT/2000/XP, all files are readable; it is not possible to give write-only permission. Thus the modes _S_IWRITE and _S_IREAD | _S_IWRITE are equivalent.

  99. _sopen applies the current file-permission mask to pmode before setting the permissions (see _umask).

  100. Requirements
  101. Routine Required header Optional headers Compatibility
  102. _sopen <io.h>; <fcntl.h>;, <sys/types.h>;, <sys/stat.h>;, <share.h>; Win 98, Win Me, Win NT, Win 2000, Win XP
  103. _wsopen <io.h>; or <wchar.h>; <fcntl.h>;, <sys/types.h>;, <sys/stat.h>;, <share.h>; Win NT, Win 2000, Win XP

  104. For additional compatibility information, see Compatibility in the Introduction.

  105. Libraries

  106. All versions of the C run-time libraries.

  107. Example
  108. /* LOCKING.C: This program opens a file with sharing. It locks
  109. * some bytes before reading them, then unlocks them. Note that the
  110. * program works correctly only if the file exists.
  111. */

  112. #include <io.h>;
  113. #include <sys/types.h>;
  114. #include <sys/stat.h>;
  115. #include <sys/locking.h>;
  116. #include <share.h>;
  117. #include <fcntl.h>;
  118. #include <stdio.h>;
  119. #include <stdlib.h>;

  120. void main( void )
  121. {
  122.    int  fh, numread;
  123.    char buffer[40];

  124.    /* Quit if can't open file or system doesn't
  125.     * support sharing.
  126.     */
  127.    fh = _sopen( "locking.c", _O_RDWR, _SH_DENYNO,
  128.                  _S_IREAD | _S_IWRITE );
  129.    if( fh == -1 )
  130.       exit( 1 );

  131.    /* Lock some bytes and read them. Then unlock. */
  132.    if( _locking( fh, LK_NBLCK, 30L ) != -1 )
  133.    {
  134.       printf( "No one can change these bytes while I'm reading them\n" );
  135.       numread = _read( fh, buffer, 30 );
  136.       printf( "%d bytes read: %.30s\n", numread, buffer );
  137.       lseek( fh, 0L, SEEK_SET );
  138.      _locking( fh, LK_UNLCK, 30L );
  139.       printf( "Now I'm done. Do what you will with them\n" );
  140.    }
  141.    else
  142.       perror( "Locking failed\n" );

  143.    _close( fh );
  144. }

  145. Output
  146. No one can change these bytes while I'm reading them
  147. 30 bytes read: /* LOCKING.C: This program ope
  148. Now I'm done. Do what you will with them

  149. See Also
  150. Low-level I/O Routines | _close | _creat | fopen | _fsopen | _open



  151. --------------------------------------------------------------------------------

  152. Send feedback to Microsoft

  153. & 2001 Microsoft Corporation. All rights reserved.
复制代码

论坛徽章:
0
7 [报告]
发表于 2003-11-01 10:37 |只看该作者

关于客户端ftp下载的一个问题!

请问楼上斑竹,在UNIX里面有sopen吗?没有的话,怎么实现呢?
是用open 还是用 fcntl?请指教。

论坛徽章:
1
荣誉版主
日期:2011-11-23 16:44:17
8 [报告]
发表于 2003-11-03 11:56 |只看该作者

关于客户端ftp下载的一个问题!

unix里面缺省没有读写的限制,直接用open就好
您需要登录后才可以回帖 登录 | 注册

本版积分规则 发表回复

  

北京盛拓优讯信息技术有限公司. 版权所有 京ICP备16024965号-6 北京市公安局海淀分局网监中心备案编号:11010802020122 niuxiaotong@pcpop.com 17352615567
未成年举报专区
中国互联网协会会员  联系我们:huangweiwei@itpub.net
感谢所有关心和支持过ChinaUnix的朋友们 转载本站内容请注明原作者名及出处

清除 Cookies - ChinaUnix - Archiver - WAP - TOP