Sponsored Content
Full Discussion: seekdir()? what does it do?
Top Forums UNIX for Dummies Questions & Answers seekdir()? what does it do? Post 302490061 by l flipboi l on Sunday 23rd of January 2011 07:48:55 PM
Old 01-23-2011
Hello,

Heres what I found:

SunOS jazzy 5.10 Generic_142900-15 sun4u sparc SUNW,Sun-Blade-1500

I'm using ssh on mac os x terminal and i'm compiling my code using c.

I wanted to know what seekdir does, because I'm trying to write a program that imitates cp copying a filename to a directory.
 
seekdir(3C)						   Standard C Library Functions 					       seekdir(3C)

NAME
seekdir - set position of directory stream SYNOPSIS
#include <sys/types.h> #include <dirent.h> void seekdir(DIR *dirp, long int loc); DESCRIPTION
The seekdir() function sets the position of the next readdir(3C) operation on the directory stream specified by dirp to the position speci- fied by loc. The value of loc should have been returned from an earlier call to telldir(3C). The new position reverts to the one associated with the directory stream when telldir() was performed. If the value of loc was not obtained from an earlier call to telldir() or if a call to rewinddir(3C) occurred between the call to telldir () and the call to seekdir(), the results of subsequent calls to readdir() are unspecified. RETURN VALUES
The seekdir() function returns no value. ERRORS
No errors are defined. ATTRIBUTES
See attributes(5) for descriptions of the following attributes: +-----------------------------+-----------------------------+ | ATTRIBUTE TYPE | ATTRIBUTE VALUE | +-----------------------------+-----------------------------+ |Interface Stability |Standard | +-----------------------------+-----------------------------+ |MT-Level |Safe | +-----------------------------+-----------------------------+ SEE ALSO
opendir(3C), readdir(3C), rewinddir(3C), telldir(3C), attributes(5), standards(5) SunOS 5.11 14 Aug 2002 seekdir(3C)
All times are GMT -4. The time now is 11:49 AM.
Unix & Linux Forums Content Copyright 1993-2022. All Rights Reserved.
Privacy Policy