How to resolve the algorithm Rename a file step by step in the Fortran programming language

Published on 12 May 2024 09:40 PM

How to resolve the algorithm Rename a file step by step in the Fortran programming language

Table of Contents

Problem Statement

Rename:

This should be done twice:   once "here", i.e. in the current working directory and once in the filesystem root. It can be assumed that the user has the rights to do so. (In unix-type systems, only the user root would have sufficient permissions in the filesystem root.)

Let's start with the solution:

Step by Step solution about How to resolve the algorithm Rename a file step by step in the Fortran programming language

Source code in the fortran programming language

      PROGRAM EX_RENAME
      CALL RENAME('input.txt','output.txt')
      CALL RENAME('docs','mydocs')
      CALL RENAME('/input.txt','/output.txt')
      CALL RENAME('/docs','/mydocs')
      END


  

You may also check:How to resolve the algorithm Narcissistic decimal number step by step in the Ruby programming language
You may also check:How to resolve the algorithm Catamorphism step by step in the Run BASIC programming language
You may also check:How to resolve the algorithm Levenshtein distance step by step in the PHP programming language
You may also check:How to resolve the algorithm Arithmetic evaluation step by step in the Nim programming language
You may also check:How to resolve the algorithm Sexy primes step by step in the Prolog programming language