- android - 多次调用 OnPrimaryClipChangedListener
- android - 无法更新 RecyclerView 中的 TextView 字段
- android.database.CursorIndexOutOfBoundsException : Index 0 requested, 光标大小为 0
- android - 使用 AppCompat 时,我们是否需要明确指定其 UI 组件(Spinner、EditText)颜色
在使用 的 FTP uploader 上工作时,我遇到了一个奇怪的错误,这让我很困惑。我已经阅读了文档,但我真的很困惑。它连接到正确的服务器,因为在详细模式下显示输出,但随后它在控制台中出现以下错误而终止:
* Entry path is '/'
* Uploading to a URL without a file name!
* Closing connection #0
* URL using bad/illegal format or missing URL
代码如下:
int upload_music_file(const char* music_file, const char* short_music_file) {
strcpy(DESTINATION_MUSIC_FILE, music_file);
strcpy(REMOTE_MUSIC_FILE, short_music_file);
[musicFileField setStringValue:[NSString stringWithFormat:@"%s", DESTINATION_MUSIC_FILE]];
[curFileProgress setDoubleValue:0];
CURL *curl;
CURLcode res;
FILE *hd_src;
struct stat file_info;
curl_off_t fsize;
/* get the file size of the local file */
printf("Destination music file: %s\n", DESTINATION_MUSIC_FILE);
if(stat(DESTINATION_MUSIC_FILE, &file_info)) {
printf("Couldn't open music file %s: %s\n", DESTINATION_MUSIC_FILE, strerror(errno));
return 1;
}
fsize = (curl_off_t)file_info.st_size;
#ifdef DEBUG
printf("Local music file size: %" CURL_FORMAT_CURL_OFF_T " bytes.\n", fsize);
#endif
[curFileProgress setMaxValue:(double)fsize];
/* get a FILE* of the same file */
hd_src = fopen(DESTINATION_MUSIC_FILE, "rb");
/* In windows, this will init the winsock stuff */
curl_global_init(CURL_GLOBAL_ALL);
/* get a curl handle */
curl = curl_easy_init();
if(curl) {
curl_easy_setopt(curl, CURLOPT_URL, "ftp://orangesquirrels.com/");
curl_easy_setopt(curl, CURLOPT_VERBOSE, 1);
printf("UPLD MUSK: Remote URL: %s\n", REMOTE_URL);
/* we want to use our own read function */
curl_easy_setopt(curl, CURLOPT_READFUNCTION, music_read_callback);
/* enable uploading */
curl_easy_setopt(curl, CURLOPT_UPLOAD, 1L);
/* specify target */
printf("Remote Music File: %s\n", REMOTE_MUSIC_FILE);
fflush(stdout);
//curl_easy_setopt(curl, CURLOPT_URL, REMOTE_MUSIC_FILE);
/* pass in that last of FTP commands to run after the transfer */
//curl_easy_setopt(curl, CURLOPT_POSTQUOTE, headerlist);
/* now specify which file to upload */
curl_easy_setopt(curl, CURLOPT_READDATA, hd_src);
curl_easy_setopt(curl, CURLOPT_USERNAME, (char *)loginUser);
curl_easy_setopt(curl, CURLOPT_PASSWORD, (char *)loginPassword);
/* Set the size of the file to upload (optional). If you give a *_LARGE
option you MUST make sure that the type of the passed-in argument is a
curl_off_t. If you use CURLOPT_INFILESIZE (without _LARGE) you must
make sure that to pass in a type 'long' argument. */
curl_easy_setopt(curl, CURLOPT_INFILESIZE_LARGE,
(curl_off_t)fsize);
/* Now run off and do what you've been told! */
res = curl_easy_perform(curl);
/* Check for errors */
if(res != CURLE_OK)
{
fprintf(stderr, "UPLD MUSK: curl_easy_perform() failed: %s\n", curl_easy_strerror(res));
if (strcmp("Remote file not found", curl_easy_strerror(res)) != 0) // The file won't exist since we're creating it.
{
[SBErrorNotice performSelectorOnMainThread:@selector(showError:) withObject:[NSString stringWithUTF8String:curl_easy_strerror(res)] waitUntilDone:NO];
//[SBErrorNotice showError:[NSString stringWithUTF8String:curl_easy_strerror(res)]];
errorOccurred = true;
}
}
/* always cleanup */
curl_easy_cleanup(curl);
}
fclose(hd_src); /* close the local file */
curl_global_cleanup();
return 0;
}
这是完整的控制台输出(删除了用户名和密码):
Destination music file: /Users/user/Music/button-1.mp3
Local music file size: 10498 bytes.
UPLD MUSK: Remote URL: ftp://orangesquirrels.com
Remote Music File: button-1.mp3
* About to connect() to orangesquirrels.com port 21 (#0)
* Trying 50.63.71.1...
* connected
* Connected to orangesquirrels.com (50.63.71.1) port 21 (#0)
< 220---------- Welcome to Pure-FTPd [privsep] [TLS] ----------
< 220-You are user number 9 of 500 allowed.
< 220-Local time is now 15:23. Server port: 21.
< 220-This is a private system - No anonymous login
< 220 You will be disconnected after 3 minutes of inactivity.
> USER -------
< 331 User ------- OK. Password required
> PASS -----------
< 230 OK. Current restricted directory is /
> PWD
< 257 "/" is your current location
* Entry path is '/'
* Uploading to a URL without a file name!
* Closing connection #0
* URL using bad/illegal format or missing URL
UPLD MUSK: curl_easy_perform() failed: URL using bad/illegal format or missing URL
如有任何帮助,我们将不胜感激。
最佳答案
设置 URL 时,还必须指定文件名。替换:
curl_easy_setopt(curl, CURLOPT_URL, "ftp://orangesquirrels.com/");
与:
curl_easy_setopt(curl, CURLOPT_URL, "ftp://orangesquirrels.com/myfile.txt");
关于objective-c - libcURL 代码不工作,说我正在上传到没有文件名的服务器,我们在Stack Overflow上找到一个类似的问题: https://stackoverflow.com/questions/16429849/
任何帮助深表感谢。我正在尝试创建一个 SSIS 包来遍历文件夹中的文件并获取路径+文件名,最后执行存储的过程,参数为路径+文件名。我不确定如何获取路径+文件名并将其作为参数插入到存储过程中。我附上了截
我想编写一个小脚本来搜索确切的文件名,而不是文件名中的字符串。 例如,如果我使用资源管理器搜索“主机”,默认情况下我会得到多个结果。对于脚本,我只需要我指定的名称。我假设这可能吗? 我才真正开始编写脚
str(文件.key) = '1011/101011/文件名' newFileName = str(file.key) 但是,当我运行代码时,我得到: UnicodeEncodeError: 'asc
下面这段子程基本上可以算是比较不错的通用匹配了。(PS:我突然发现CODE_LITE把我的UBB转义了!!!晕,我只好自己转义了。。。) Dim objRegExp,Matc
PHP 无法处理带有 Unicode 字符的文件:当我在浏览器上访问 testSite/главная.php 时,它会抛出此错误。 Warning: Unknown: failed to open
我正在尝试包含 Dim在 Vlookup 中。 Dim filename As String filename = Format(DateAdd("d", -6, Now()), "mm-dd-yy"
在我的日常构建项目中,我们将其库存储到其版本名称目录中。 . 对于最新的,我们正在创建符号链接(symbolic link)作为“最新”。 前任。- ls -ltr drw-r--r-- 1 4096
重新安装了 Windows 10(版本 10.0.14393)。重新安装了以下内容: java java version "1.8.0_121" Java(TM) SE Runtime Environ
我想使用 Jekyll 和 GitHub Pages 构建文档站点。问题是 Jekyll 只接受 _posts 下的文件名具有精确的图案,如 YYYY-MM-DD-your-title-is-here
我不知道我发生了什么事。我想访问一个包含多个文件的目录,假设: folder\\1.txt 2.txt 3.txt.... 现在我想根据它们的出现情况来阅读它们,我的意思是首先是最低的,只是我想按升
如何将/放入文件名(即/不分隔路径的组成部分)? 最佳答案 你不知道。 UNIX 文件名中不允许使用斜线。 关于unix - 你如何获得 a/into 文件名?,我们在Stack Overflow上找
我需要复制一个大文件夹,并重命名其中的所有文件和文件夹(如果它们包含特定字符串)。基本上我想复制所有内容并将 10 的任何实例更改为 11。 例如,如果我有一个结构如下的文件夹: mainfolder
我有一个简单的 python (2.7) 脚本,应该执行一些 svn 命令: def getStatusOutput(cmd): print cmd p = subprocess.Po
我正在尝试读取以字符串形式存储在数据文件中的文件名。那里没问题。如果我将它传递给 genfromtxt,我会收到错误“IOError:Z:\Python\Rb input.txt not found”
简单的问题。 当我尝试打开名为 text.txt 的文件时,它可以正常工作。 但是,如果我将文件重命名为 text.cir.txt,则会出现错误。 我可以做什么来修复它? FILE *fd; char
我是 c# 的业余爱好者,我一直无法找到这个问题的答案。也许我不知道要使用的正确术语。 当一个视频文件被拖到我的 exe 应用程序上时,我希望应用程序知道它是用一个文件启动的,并且能够知道该文件的路径
我知道我必须使用 Substring 来删除,但我不知道该怎么做。我需要像这样删除字符串的结尾 来自 "C:\\Users\\myname\\Pictures\\shoeImage.jpg" 到 "C
运行 eclipse 时我收到此错误。但是当我运行我的项目时,它是在内部浏览器中执行的。但它不会在默认的系统浏览器中执行。对此任何一个答案。先谢谢您的回答 最佳答案 您可以从 eclipse 更改浏览
我想要求用户选择一个要从外部存储打开的文件并接收它的路径。最好我想避免过多的编码并使用一些标准方法(众所周知,系统提供的 Intent 或类似方法)。所说的文件是SpatiaLite db文件(*.s
我有一个文件名数据库,我正在尝试使用 PG 的全文搜索工具在其中进行搜索。我在文件名表上运行搜索查询,问题是排名函数没有按照我希望的那样对结果进行排名。为了便于讨论,我们假设架构如下所示: creat
我是一名优秀的程序员,十分优秀!