Tagged Questions
The stat tag has no wiki summary.
7
votes
3answers
322 views
How can I get the high-res mtime for a symbolic link in Perl?
I want to reproduce the output of ls --full-time from a Perl script to avoid the overhead of calling ls several thousand times. I was hoping to use the stat function and grab all the information from ...
5
votes
3answers
58 views
How does Mac OS X know what programs are using a mounted filesystem?
This may sound like a silly question but up until recently if you tried to unmount a volume that was in use the Finder reported that it was in use, but not by whom. This is simple Unix functionality, ...
5
votes
2answers
538 views
Inconsistency in modified/created/accessed time on mac
I'm having trouble using os.utime to correctly set the modification time on the mac (Mac OS X 10.6.2, running Python 2.6.1 from /usr/bin/python). It's not consistent with the touch utility, and it's ...
4
votes
1answer
359 views
c and LD_PRELOAD. open and open64 calls intercepted, but not stat64
I've done a little shared library that tries to intercept open, open64, stat and stat64 sys calls.
When I export LD_PRELOAD and run oracle's sqlplus, I can see the traces of the open and open64 calls, ...
4
votes
3answers
186 views
stat() function doesnt seem to be working in test PAM module
I'm trying to write a PAM module. The PAM module creates a directory on first log in. Very similar to the pam_mkhomedir.
Here is the code.
PAM_EXTERN int
pam_sm_open_session (pam_handle_t *pamh, ...
3
votes
3answers
151 views
C Programming - Stat system call - Error
I'm new to C but trying some system calls.
I'm writing program that iterates through all files in a directory and prints the current file name and size. I can get the program to print the file name ...
3
votes
2answers
66 views
Custom error handling is catching errors that normally are not displayed
I am having a problem I can't seem to figure out and I hope you guys can help me.
The problem occurs when :
I use custom errorhandling
I use File::Stat in a seperate module
Example:
Main file
...
3
votes
2answers
123 views
Is fstat() a safe (sandboxed) operation?
I'm currently writing a Python sandbox using sandboxed PyPy. Basically, the sandbox works by providing a "controller" that maps system library calls to a specified function instead. After following ...
3
votes
3answers
94 views
Using C, how can I know when a file is created?
I'm making a program in C for linux that scans a directory every x seconds during a time period for modifications, but I'm having trouble finding out when a file or directory is created. Here are a ...
3
votes
1answer
341 views
How to get details like PHP's stat() but using (raw) FTP (CURL)?
I'm new here. I've got a question related to PHP, FTP and CURL.
I need to emulate PHP's stat() with CURL FTP. I already know that it may take more than one command to do it. Here's what I've got so ...
3
votes
3answers
833 views
How can I get the last modified time of a directory in Perl on Windows?
In Perl (on Windows) how do I determine the last modified time of a directory?
Note:
opendir my($dirHandle), "$path";
my $modtime = (stat($dirHandle))[9];
results in the following error:
The ...
2
votes
2answers
78 views
C stat() ignoring files
I'm having an issue with the stat function in C. My application must list all files in two directories (2nd directory not implemented yet). When dir1 is set to "." for current directory it lists all ...
2
votes
1answer
74 views
STAT Block size/blocks used
Ok so i have a question that it confusing me and my task to work out fragmentation...
stat() for a file:
st_size = 10520
st_blksize = 4096
st_blocks = 24
I have read in some places that st_blksize ...
2
votes
2answers
88 views
Intercepting stat()
I have successfuly intercepted calls to read(),write(),open(),unlink(),rename(), creat() but somehow with exactly the same semantics intercepting stat() is not taking place. I have changed the ...
2
votes
6answers
120 views
Inference about Slope coefficient in R
By default lm summary test slope coefficient equal to zero. My question is very basic. I want to know how to test slope coefficient equal to non-zero value. One approach could be to use confint but ...
2
votes
1answer
81 views
C stat() function reports that Windows Desktop folder is read-only
Obviously, my desktop is not read-only, however stat() and findfirst() functions report this as non-writable. Should I use some other function instead? Why?
#include <iostream>
#include ...
2
votes
1answer
187 views
Get a nanosecond-precise atime, mtime, ctime fields for file (stat?)
Some filesystems (e.g. ext4 and JFS) offer nanosecond resolution of atime/mtime fields. How can I read ns-resolution fields? The stat syscall returns time_t which is a second-resolution.
2
votes
2answers
109 views
Error checking when finding file length using stat
This question is in reference to How can I get a file's size in C?
Most answers suggesting the use of the function stat to get the file length also comes with a tag to do error checking.
What ...
2
votes
1answer
114 views
Are struct stat times GMT?
One of the fields in struct stat is st_mtime. I assume that is seconds since jan 1, 1970. Is that GMT or local time?
2
votes
3answers
289 views
R round exponential number
I just trying to round in R number like:
> 1.327076e-09
it should be resulting in
> 1.32e-09
which function can use?
2
votes
1answer
186 views
Using meta learning in RWeka
I used RWeka to call Weka functions directly in R.
I tried using meta learning (bagging) but failed.
My code is Bagging(classLabel ~ ., data = train, control = Weka_control(W = J48))
However, the ...
2
votes
4answers
1k views
C++ - stat(), access() not working under gnu gcc
I've got a pretty basic console program here, to determine if a folder or file exists or not using stat:
#include <iostream>
#include <sys/stat.h>
using namespace std;
int main() {
...
2
votes
1answer
72 views
Bungie Reach API - Realtime stats?
I have been playing around with the new bungie stat API that is available and have a question about it.
Is there any way I can get real time data, like matchmaking has just matched me with my team, ...
2
votes
1answer
107 views
C: strange behavior with nftw()
I've this code:
#include <ftw.h>
#include <stdio.h>
#include <string.h>
int nftw_stat(const char *path, const struct stat *stat, int flags,
struct FTW *ftw)
{
if ...
2
votes
1answer
193 views
man 2 stat - how to figure out if a file is a link
I have the below code only a part of it is shown here and I am checking if a the type of file.
struct stat *buf /* just to show the type buf is*/
switch (buf.st_mode & S_IFMT) {
...
2
votes
8answers
654 views
Is there a faster alternative to Perl's stat?
I'm traversing an entire partition, stat()'ing each file and then checking the returned values for mtime, size and uid against hashed values. stat() however is far too slow in Perl and I'm wondering ...
2
votes
1answer
255 views
Static members in VB.NET
I used to write this:
Private Sub Example()
Static CachedPeople As List(Of MyApp.Person)
If CachedPeople Is Nothing Then
CachedPeople = New List(Of MyApp.Person)
End If
...rest of code...
End Sub
...
2
votes
2answers
3k views
Get owner's access permissions using C++ and stat
How can I get the file owner's access permissions using stat from sys/stat.h using C++ in Kubuntu Linux?
Currently, I get the type of file like this:
struct stat results;
stat(filename, ...
1
vote
1answer
43 views
cstime error in /proc/pid/stat file
stime or cstime in /proc/pid/stat file is so huge that doesn't make any sense. But just some processes have this wrong cstime on occasion. Just as following:
# ps -eo ...
1
vote
1answer
55 views
fuse filesystem can not change the value of struct stat *stbuf in getattr function?
Question Solved!
Thanks to @basile-starynkevitch , I find out that the struct stat is not at the same size in different files!
In <sys/stat.h>, sizeof(struct stat) is 88bytes, but with fuse's ...
1
vote
2answers
94 views
C stat struct does not have st_ctime field but only st_ctim
I've now been googleing this for about two hours, yet I was unable to find any answers that helped.
The definition of 'stat' as spcified in the manpage says that a st_ctime field exists.
...
1
vote
2answers
31 views
What information identifies the file data at a path as being unchanged?
I want to memoize the result of a function that operates on the file data at a given path. How can I determine if the file data has changed since I last processed it?
I'm considering mapping a key ...
1
vote
2answers
40 views
How to retrieve the user name from the user ID
I am implementing the (ls) command on Unix while learning from a book. During the coding part of my implementation of the (ls) command with the (-l) flag, I see that I have to prompt the user and ...
1
vote
2answers
55 views
Traversing files on a distributed file system
I have a filesystem with a few hundred million files (several petabytes) and I want to get pretty much everything that stat would return and store it in some sort of database. Right now, we have an ...
1
vote
3answers
136 views
What's the difference between struct __stat64 and struct _stati64 on WIN32?
I'm working on some code that needs to run on every version of windows since WIN2000 and also needs to work with wide file paths.
I need to call some variant of stat to get the file length. The file ...
1
vote
2answers
91 views
stat vs mkdir with EEXIST
I need to create folder if it does not exists, so I use:
bool mkdir_if_not_exist(const char *dir)
{
bool ret = false;
if (dir) {
// first check if folder exists
struct stat folder_info;
...
1
vote
2answers
265 views
How does _stat() under windows exactly works
in my code I try to get the permissions for a file with _stat(). Currently I want to run it under windows. The method is as follows:
bool CFile::Private::checkPermissions(std::string sFilename, ...
1
vote
1answer
262 views
How to set a file's ctime with Python?
How can I set a Unix file's ctime?
(I'd much prefer an answer in terms of Python. If there's no way to do it with standard Python, then I suppose C is OK too.)
(Note: I know that one can use ...
1
vote
2answers
363 views
Reading dir and getting stat() for each file — problem
When i'm trying to read dir in loop, and perform for each file stat() (to get $size and $mode) i get wrong data!
For example, i just created simple text file and it shows me that, it have permission ...
1
vote
1answer
98 views
meaning of stat symbolic names
In the stat.h there are many symbolic names... (for an example : S_IRWXU). I can able to understand the meaning of R,W,X. But I cannot able to understand the meaning of S_I. Though it is not essential ...
1
vote
0answers
166 views
Cygwin ::stat() giving 'No such file or directory' for samba mounted cygdrive
I have some code calling ::stat() on a pathname which works fine on Centos, but on Cygwin, it fails when the supplied pathname is a directory on a samba mounted drive:
struct stat info;
int result1 ...
1
vote
1answer
403 views
In Python: How to Return “Windows” Created Time of a File?
Thsi question is edited with new information further below:
I am on Windows 7 Machine using Cygwin.. and I have both Python 2.6 and 3.1 installed.
I can see the following using my short python ...
1
vote
4answers
276 views
Determine user/group ownership for a directory
I have a perl script that will perform some operations on directories, and I only wait it to run on directories for which the current user(e.g. the user executing the script) has ownership.
I've ...
1
vote
1answer
165 views
How do you determine the optimal disk IO block size on Win32?
On Posix systems, the st_blksize member of the stat structure contains the optimal block size for IO for a given file. It looks like the Win32 implementations of stat (_stat & _stat64) do not ...
1
vote
1answer
638 views
tar --files-from complains “Cannot stat: No such file or directory” [closed]
When I type " tar -cvf ~/changeset.tar --files-from ~/changeset.txt", It responds with this output: http://pastie.org/1071080. Here is the contents of ~/changeset.txt: http://pastie.org/1071084 . In ...
1
vote
1answer
602 views
Check if a file is setuid root in Python
I'm trying to check if a file has the setuid bit in Python.
The stat doc mentions a S_ISUID function but it only works with os.chmod(), not to actually read the setuid bit. It also lists S_IMODE, but ...
1
vote
1answer
485 views
How does stat() work?
stattest.c:
// compile: gcc -o stattest stattest.c
#include <stdio.h>
#include <sys/stat.h>
int main(int argc, char *argv[]) {
struct stat stats;
stat(argv[1], &stats);
...
1
vote
2answers
904 views
List regular files only (without directory) problem
Do you know why certain files are not listed by this program, even if they are "regular"?:
#include <stdio.h>
#include <sys/types.h>
#include <sys/param.h>
#include ...
1
vote
4answers
2k views
What are the semantics of 'stat' on a dirhandle in Perl?
On researching another question I noted that the stat function in Perl can take a dirhandle as its argument (instead of a filehandle or filename).
However I can't find any examples of correct use of ...
0
votes
1answer
13 views
Apply exact stat parameters from one file to another using C in Linux
I would like get stat parameters from one file and later apply it as is, to a copy of the same file (Including type, path, permissions, size, etc.).
The original file will be long gone from this ...