我遇到了一个我正在编写的程序的问题。它是一个解析bencode(在torrent文件中使用)的命令行解析器。程序接受一个文件名作为它的命令行。当我使用调试Commmand Line参数设置在Microsoft Visual Studio 10.0中构建和运行程序以输入命令行时,程序会告诉我它解析失败。
如果我打开一个命令提示符并使用相同的命令行从命令提示符运行该程序,该程序将完美运行!发生了什么事?这是Visual Studio的常见问题吗?
我在Visual Studio中使用调试器来跟踪程序失败的位置,并且看起来用于获取文件长度的stat函数(http://msdn.microsoft.com/en-us/library/14h5k7ff.aspx)的调用在Visual Studio中返回错误但工作正常在Visual Studio外部运行时。
代码使用Bencode解析器,可在此处找到:http://funzix.git.sourceforge.net/git/gitweb.cgi?p=funzix/funzix;a=blob;f=bencode/bencode.c
以下是该计划的代码:
#include <stdio.h>
#include "../Parse/bencode.h"
int main(int argc, char *argv[]){
if(argc != 2){
printf("Usage: whirlwind filename\n");
return 1;
}
char *buf;
long long len;
be_node *n;
//read the torrent file into a buffer and store at &buf
buf = read_file(argv[1], &len);
if(!buf){
buf = argv[1];
len = strlen(argv[1]);
}
printf("Decoding: %s\n", argv[1]);
n = be_decoden(buf, len);
if(!n){
printf("Parsing failed!\n");
return 1;
}
if(n->type != BE_DICT){
printf("This file is not a valid Bencoded Dictionary.\n");
return 1;
}
int i;
char* keyName;
for(i = 0; i < 10; i++){
keyName = n->val.d[i].key;
if(keyName == "announce"){
printf("\n\n");
}
printf("%s\n", keyName);
if(keyName == "announce"){
printf("\n\n");
}
}
return 0;
}
答案 0 :(得分:1)
如果从Visual Studio传递相对路径,则应确保当应用程序在IDE中运行时,它会正确解析。出现此问题的原因是,在调试时,当前目录通常是\ bin \ debug 为安全起见,请输入完整路径名或从配置文件中读取文件的位置。