- html - 出于某种原因,IE8 对我的 Sass 文件中继承的 html5 CSS 不友好?
- JMeter 在响应断言中使用 span 标签的问题
- html - 在 :hover and :active? 上具有不同效果的 CSS 动画
- html - 相对于居中的 html 内容固定的 CSS 重复背景?
<分区>
好吧,我正在尝试制作一个文件浏览器程序,我现在处于基础阶段,但是这里的这一行:
fprintf(stderr, "stat returned %i\n", stat(files[curser].c_str(), &st));
说 stat 返回 -1(失败),我想知道为什么。谁能告诉我?这是完整的来源:
#include <SDL/sdl.h>
#include <SDL/sdl_image.h>
#include <SDL/SDL_audio.h>
#include <SDL/SDL_mixer.h>
#include <SDL/SDL_ttf.h>
#include <iostream>
#include <sstream> // String stream library
#include <string>
#include <stdio.h>
#include <vector>
#include <fstream>
#include <ios>
#include <sys/types.h>
#include <sys/stat.h>
#include <dirent.h>
#include <errno.h>
#define TICK_INTERVAL 30
using namespace std;
extern "C" int SDL_main(int argc, char *argv[]);
const int SCREEN_WIDTH = 640;
const int SCREEN_HEIGHT = 480;
const int SCREEN_BPP = 16;
SDL_Surface *screen = NULL;
SDL_Surface *message = NULL;
bool keys[322];
TTF_Font *font = NULL;
SDL_Color textColor = { 255, 255, 255};
SDL_Color highlightColor = { 255, 0, 0};
Uint32 TimeLeft(void)
{
static Uint32 next_time = 0;
Uint32 now;
now = SDL_GetTicks();
if ( next_time <= now ) {
next_time = now+TICK_INTERVAL;
return(0);
}
return(next_time-now);
}
void init(){
// initialize SDL video. If there was an error SDL shows it on the screen
if ( SDL_Init( SDL_INIT_EVERYTHING) < 0 )
{
fprintf(stderr, "Unable to init SDL: %s\n", SDL_GetError() );
SDL_Delay( 5000 );
// exit(EXIT_FAILURE);
}
// make sure SDL cleans up before exit
atexit(SDL_Quit);
SDL_ShowCursor(SDL_DISABLE);
// create a new window
screen = SDL_SetVideoMode( SCREEN_WIDTH, SCREEN_HEIGHT, SCREEN_BPP, SDL_DOUBLEBUF|SDL_HWSURFACE );
if ( !screen )
{
fprintf(stderr, "Unable to set video: %s\n", SDL_GetError());
SDL_Delay( 5000 );
// exit(EXIT_FAILURE);
}
SDL_WM_SetCaption("Dir Reader", "Dir Reader");
TTF_Init();
//SDL_JoystickEventState(SDL_ENABLE);
// joystick = SDL_JoystickOpen(0);
}
void cleanup(){
// we have to quit SDL
SDL_Quit();
exit(EXIT_SUCCESS);
}
void apply_surface ( int x, int y, SDL_Surface* source, SDL_Surface* destination ){
// make a temporary rectangle to hold the offsets
SDL_Rect offset;
// give the offsets to the rectangle
offset.x = x;
offset.y = y;
// blit the surface
SDL_BlitSurface( source, NULL, destination, &offset );
}
void apply_surface ( int sourceX, int sourceY, int x, int y, SDL_Surface* source, SDL_Surface* destination ){
// make a temporary rectangle to hold the offsets
SDL_Rect offset;
SDL_Rect sourceRect;
// give the offsets to the rectangle
offset.x = x;
offset.y = y;
sourceRect.x = sourceX;
sourceRect.y = sourceY;
sourceRect.h = source->h;
sourceRect.w = source->w;
// blit the surface
SDL_BlitSurface( source, &sourceRect, destination, &offset );
}
void apply_surface ( int sourceX, int sourceY, int sourceW, int sourceH, int x, int y, SDL_Surface* source, SDL_Surface* destination ){
// make a temporary rectangle to hold the offsets
SDL_Rect offset;
SDL_Rect sourceRect;
// give the offsets to the rectangle
offset.x = x;
offset.y = y;
sourceRect.x = sourceX;
sourceRect.y = sourceY;
sourceRect.h = sourceH;
sourceRect.w = sourceW;
// blit the surface
SDL_BlitSurface( source, &sourceRect, destination, &offset );
}
int getdir (string dir, vector<string> &files)
{
DIR *dp;
struct dirent *dirp;
if((dp = opendir(dir.c_str())) == NULL) {
cout << "Error(" << errno << ") opening " << dir << endl;
return errno;
}
while ((dirp = readdir(dp)) != NULL) {
files.push_back(string(dirp->d_name));
}
closedir(dp);
return 1337;
}
int SDL_main( int argc, char* argv[] )
{
printf("init.\n");
init();
font = TTF_OpenFont( "GOODTIME.ttf", 15 );
bool done = false;
string dir = "C:/";
// dir = dir.substr(0, dir.size() - 1);
int curser = 0;
while(!done){
vector<string> files = vector<string>();
if(getdir(dir,files) == errno){
printf("error number: %i.\n", errno);
}
SDL_Event event;
while (SDL_PollEvent(&event))
{
// Close window : exit
if( event.type == SDL_QUIT )
done = true ;
else if (event.type == SDL_KEYDOWN )
{
keys[event.key.keysym.sym] = true;
}
else if (event.type == SDL_KEYUP )
{
keys[event.key.keysym.sym] = false;
}
}
if (keys[SDLK_x]){
struct stat st;
fprintf(stderr, "stat returned %i\n", stat(files[curser].c_str(), &st));
if(S_ISDIR(st.st_mode)){
if(files[curser][0] == '.' && files[curser][1] == '.'){
dir = dir.substr(0, dir.size() - 1);
dir = dir.substr(0, dir.find_last_of('/'));
}
else{
string temp = string(files[curser]);
dir += "/";
dir += temp;
}
}
curser = 1;
keys[SDLK_x] = false;
}
if (keys[SDLK_UP]){
curser--;
if(curser <= 0){
curser = (int) (files.size() - 1);
}
keys[SDLK_UP] = false;
}
if (keys[SDLK_DOWN]){
curser++;
if(curser >= (int) files.size()){
curser = 1;
}
keys[SDLK_DOWN] = false;
}
SDL_Rect rect;
rect.x = 0;
rect.y = 0;
rect.h = 480;
rect.w = 640;
SDL_FillRect(screen, &rect, 0x000000);
message = TTF_RenderText_Solid( font, dir.c_str(), textColor );
apply_surface(0, 0, message, screen);
for(int i = 0; i < (int) files.size(); i++){
if(curser == i){
message = TTF_RenderText_Solid( font, files[i].c_str(), highlightColor );
}
else{
message = TTF_RenderText_Solid( font, files[i].c_str(), textColor );
}
apply_surface(0, 25 + (i * 15), message, screen);
}
SDL_Delay(TimeLeft());
SDL_Flip(screen);
}
cleanup();
return 0;
}
所以,我正在尝试创建一种 ls 函数。这是我对每个文件的描述的代码 struct stat fileStat; struct dirent **files; num_entries = scandir
我最近一直在尝试实现我自己的 linux ls 命令版本。一切都很好,但是当我尝试使用 ls -l 功能时,struct stat 的某些字段未初始化 - 我得到 NULL 指针或垃圾值,尽管它似乎只
我在 Yii 中遇到 STAT 关系问题。我不确定我正在寻找的东西是否可以通过本地 Yii 关系实现。我会尽力描述我的问题,如果不清楚,请询问任何具体细节。 我有三个表,因此有三个模型 | table
我正在为一个严重依赖 scipy.stats.stats(scipy 版本 0.9.0)的包创建一个 django-powered (1.3) 接口(interface),称为 ovl 。在早期开发阶
为了安全起见,我喜欢显式初始化我的变量(当您编写大量代码时,它通常会使它更安全,因为您的代码最终不会崩溃那么多。) 对于大多数类型,无论是结构还是整数等基本 C++ 类型,我都可以编写以下内容: ti
我一直在使用 stat() 检查文件是否存在,据我所知,这比尝试打开文件更好。但是,stat() 不适用于包含其他语言的 unicode 字符的文件名。是否有 stat() 的宽字符版本或我可以使用的
错误: File "/usr/lib/python2.7/dist-packages/statsmodels/regression/linear_model.py", line 36, in
下面是我要运行的脚本。我不能在 awk 中使用 stat。 cat /etc/passwd | awk 'BEGIN{FS=":"}{print $6 }' | (stat $6 | sed -n '
我正在尝试拟合 xlog 线性回归。我使用 Seaborn regplot 来绘制拟合,看起来很合适(绿线)。然后,因为 regplot 不提供系数。我使用 stats.linregress 来查找系
我正在尝试使用共享库 (libscplugin.so) 中包含的方法。 我已经满足了库的所有要求: libc.so 带有指向 libc.so.6 的符号链接(symbolic link) libz.s
嘿,感谢阅读。 我正在制作一个程序,它接受 1 个参数(目录)并使用 opendir()/readdir() 读取目录中的所有文件,并使用 stat 显示文件类型(reg、链接、目录等)。当我在 sh
简单问题:在 Linux 中,我 stat() 一个不是设备的文件。 st_rdev 字段的期望值是多少?我可以运行 major(stat.st_rdev) 和 minor(stat.st_rdev)
我正在尝试为我的 Angular 6 应用程序生成 stats.json 文件。下面的事情我已经尝试过,但根本没有生成文件。我的系统需要有 “npm 运行”在每个 angular cli 命令之前。
我正在尝试使用返回的 stat 结构中的 st_mode,该结构是我通过以下方式从 stat() 调用获得的; char *fn = "test.c" struct s
关闭。这个问题需要debugging details .它目前不接受答案。 编辑问题以包含 desired behavior, a specific problem or error, and th
我有一个程序,是我通过修改原始暗网(深度学习图像识别,Yolov2)的许多地方而制作的。几个月前我一直在使用它,但是今天当我编译它时,它给了我一个错误: gcc -DSAVE_LAYER_INPUT
我预计 scipy.stats.mstats.pearsonr 对于屏蔽数组输入的结果将与 scipy.stats.pearsonr 对于输入数据的 unmasked 值给出相同的结果,但它不会't:
给定 tmp.c: #include #include #include int main(int argc, const char *argv[]) { struct stat st;
In [15]: a = np.array([0.5, 0.5, 0, 0, 0]) In [16]: b = np.array([1, 0, 0, 0, 0]) In [17]: entropy(a
当我们运行 stat filename我们得到 Access: 2021-06-25 15:40:18.532621916 +0530 Modify: 2020-08-13 15:57:30.0000
我是一名优秀的程序员,十分优秀!