English Deutsch Français Italiano Español Português 繁體中文 Bahasa Indonesia Tiếng Việt ภาษาไทย
All categories
0

I would I open a floder in C++ using the system("start etc) ; command

2006-11-21 13:55:51 · 2 answers · asked by Best Helper 4 in Computers & Internet Programming & Design

I want to open a floder that is on my pc how would i do that in c++

2006-11-21 14:40:14 · update #1

2 answers

In your code, you do not need "system("start etc);": system( "cd dir_you_need" ) or "chdir(dir_you_need )" will be quite right :-)
Do not forget to
#include "stdlib.h"
and do not forget that your "chdir" must get as an argument either full path or directory name relative to your current directory.

2006-11-21 15:31:43 · answer #1 · answered by alakit013 5 · 0 0

umm, what?
Can you explain your question a bit more.

2006-11-21 14:37:48 · answer #2 · answered by Anonymous · 0 0

fedest.com, questions and answers