Linux file Management (C language library function III)

Source: Internet
Author: User

Find current directory The char *getcwd (char * buf,size_t size) getcwd function copies the absolute pathname of the current working directory to BUF, which indicates the size of the BUF if BUF is not large enough, The entire pathname cannot be mounted, and GETCWD returns NULL. The current directory is the directory where the current page is located, not the directory where the program resides, equivalent  to "pwd" command

//GETCWD ()#include <stdio.h>#include<stdlib.h>#include<unistd.h>#include<string.h>#include<errno.h>intMainintArgChar*args[]) {    //Get current directory    Charbuf[ the]={0}; /*getcwd () function header file is Unistd.h*/    Char*RES=GETCWD (BUF,sizeof(BUF)); if(res) {printf ("%s\n", BUF); }    return 0;}

Linux file Management (C language library function III)

Related Article

Contact Us

The content source of this page is from Internet, which doesn't represent Alibaba Cloud's opinion; products and services mentioned on that page don't have any relationship with Alibaba Cloud. If the content of the page makes you feel confusing, please write us an email, we will handle the problem within 5 days after receiving your email.

If you find any instances of plagiarism from the community, please send an email to: info-contact@alibabacloud.com and provide relevant evidence. A staff member will contact you within 5 working days.

A Free Trial That Lets You Build Big!

Start building with 50+ products and up to 12 months usage for Elastic Compute Service

  • Sales Support

    1 on 1 presale consultation

  • After-Sales Support

    24/7 Technical Support 6 Free Tickets per Quarter Faster Response

  • Alibaba Cloud offers highly flexible support services tailored to meet your exact needs.