ChDir Statement

हालको डाइरेक्टरी वा ड्राइभ परिवर्तन गर्दछ ।

warning

Some DOS-specific file and directory functions are no longer provided in LibreOffice, or their function is only limited. For example, support for the ChDir, ChDrive and CurDir functions is not provided. Some DOS-specific properties are no longer used in functions that expect file properties as parameters (for example, to differentiate from concealed files and system files). This ensures the greatest possible level of platform independence for LibreOffice. Therefore this feature is subject to removal in a future release.


note

The ScriptForge library in LibreOffice 7.1 introduces the FileSystem service with methods to handle files and folders in user scripts.


Syntax:

स्ट्रिङको रूपमा ChDir पाठ

Parameters:

पाठ:कुनै स्ट्रिङ अभिव्यक्तिले त्यसको डाइरेक्टरी मार्ग वा ड्राइभ निर्दिष्ट गर्दछ ।

द्रष्टव्य प्रतिमा

यदि हालको ड्राइभलाई मात्र परिवर्तन गर्न चाहेको खण्डमा बिराम चिन्हद्वारा दिएको ड्राइभ अक्षर प्रविष्ट गर्नुहोस् ।


त्रुटि सङ्केतहरू

5 अवैध कार्य-विधि कल

76 मार्ग फेला परेन

Example:

Sub ExampleChDir
    Dim sDir1 As String, sDir2 As String
    sDir1 = "C:\Test"
    sDir2 = "D:\Private"
    ChDir( sDir1 )
    MsgBox CurDir
    ChDir( sDir2 )
    MsgBox CurDir
End Sub

कृपया हामीलाई समर्थन गर्नुहोस्!