Logo

Programming-Idioms

  • C++
  • Lisp
  • Python
  • Fortran
  • C#
  • C#

Idiom #106 Get program working directory

Assign to string dir the path of the working directory.
(This is not necessarily the folder containing the executable itself)

import os
dir = os.getcwd()

getcwd stands for Get the Current Working Directory
#include <filesystem>
dir = std::filesystem::current_path();

c++ 17
use iso_c_binding, only: c_char, c_size_t,c_ptr, c_null_ptr, c_associated
  interface
     function c_getcwd (buf, size) bind(C,name="getcwd") result(r)
       import
       type(c_ptr) :: r
       character(kind=c_char), dimension(*), intent(out) :: buf
       integer(kind=c_size_t), value :: size
     end function c_getcwd
  end interface

    if (c_associated(c_getcwd (buf, size(buf,kind=c_size_t)))) then
       n = findloc(buf,achar(0),1)
       allocate (character(len=n-1) :: dir)
       dir(1:n-1) = transfer(buf(1:n-1),dir(1:n-1))
    end if

This uses the C interoperability feature of Fortran to use C's getcwd.

It is likely that a Fortran compiler will have an extension to do this.
using System.IO;
string path = Directory.GetCurrentDirectory();
with Ada.Directories; use Ada.Directories;
Dir : String := Current_Directory;

New implementation...
< >
programming-idioms.org