C Programming
 
Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
User Name:
Password:
Remember me
Go Back   Dev Shed ForumsProgramming LanguagesC Programming

Reply
Add This Thread To:
  Del.icio.us   Digg   Google   Spurl   Blink   Furl   Simpy   Y! MyWeb 
Thread Tools Search this Thread Rate Thread Display Modes
 
Unread Dev Shed Forums Sponsor:
Get inside! Sample the range of functionality easily built with JMSL Library for Time Series Data Analysis, Heat Maps, Portfolio Optimization, Monte Carlo Simulation, Stock Price Charting and more. Download Now!
  #1  
Old April 10th, 2002, 10:54 PM
jstn jstn is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2002
Posts: 0 jstn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via AIM to jstn
Question opening a C file from a specific directory

a few questions:



1) i'm writing a program that requires the opening of a file from a specific directory. i know the syntax to create a pointer to a file, however i am unclear as to how i could set the pointer to open a file like this: /home/username/./somedir/filename -- also how do i write the file back to that directory once i've made my editions to it?



2) how do i call system commands from a C program. for example how would i make the app call xmms for example /usr/bin/xmms ?



3) what is the syntax for setting up your main() to receive parameters from the command line?



feedback on any of the above is appreciated. thanks!



-j

Reply With Quote
  #2  
Old April 11th, 2002, 12:35 PM
Scorpions4ever's Avatar
Scorpions4ever Scorpions4ever is offline
Banned ;)
Dev Shed God 5th Plane (7000 - 7499 posts)
 
Join Date: Nov 2001
Location: Glendale, Los Angeles County, California, USA
Posts: 7,442 Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level)Scorpions4ever User rank is Major General (70000 - 90000 Reputation Level) 
Time spent in forums: 1 Month 2 h 5 m 45 sec
Reputation Power: 797
1. Specify the complete pathname in the fopen function
Code:
#include <stdio.h>
....
....
FILE *in, *out;
/* To open a file in read mode */
in = fopen("/home/username/./somedir/filename", "r"); 

/* To open a file in write mode */
out = fopen("/home/username/./somedir/filename2", "w");

/* To open a file in append mode */
out = fopen("/home/username/./somedir/filename2", "a");

/* To open a file in read/write mode */
in = fopen("/home/username/./somedir/filename", "r+"); 


2. Use the system() call
Code:
#include <stdlib.h>
....
....
system("/usr/bin/xmms");


3. Declare the function as:
int main(int argc, char *argv[])
or
int main(int argc, char **argv)

argc will give you the number of arguments that are passed to the program and the argv array holds the actual arguments. argc will always be >=1 and argv[0] always holds the name of the program itself.

Code:
#include <stdio.h>

int main(int argc, char *argv[]) {
    int x;

    for (x = 0; x < argc; x++) 
        printf("Argument #%d is %s\n", x, argv[x]);

    return 0;
}

Reply With Quote
  #3  
Old April 13th, 2002, 08:43 AM
jstn jstn is offline
Junior Member
Dev Shed Newbie (0 - 499 posts)
 
Join Date: Apr 2002
Posts: 0 jstn User rank is Just a Lowly Private (1 - 20 Reputation Level) 
Time spent in forums: < 1 sec
Reputation Power: 0
Send a message via AIM to jstn
great, thanks so much

Reply With Quote
Reply

Viewing: Dev Shed ForumsProgramming LanguagesC Programming > opening a C file from a specific directory


Thread Tools  Search this Thread 
Search this Thread:

Advanced Search
Display Modes  Rate This Thread 
Rate This Thread:


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
View Your Warnings | New Posts | Latest News | Latest Threads | Shoutbox
Forum Jump


Forums: » Register « |  User CP |  Games |  Calendar |  Members |  FAQs |  Sitemap |  Support | 
  
 





© 2003-2008 by Developer Shed. All rights reserved. DS Cluster 4 hosted by Hostway