Zum Inhalt springen
View in the app

A better way to browse. Learn more.

Fachinformatiker.de

A full-screen app on your home screen with push notifications, badges and more.

To install this app on iOS and iPadOS
  1. Tap the Share icon in Safari
  2. Scroll the menu and tap Add to Home Screen.
  3. Tap Add in the top-right corner.
To install this app on Android
  1. Tap the 3-dot menu (⋮) in the top-right corner of the browser.
  2. Tap Add to Home screen or Install app.
  3. Confirm by tapping Install.

Unterverzeichnisse und Dateien einlesen

Empfohlene Antworten

Veröffentlicht

Hallo!!!

Wie kann ich aus einem Verzeichnis, das ich aus der Registry ausles die Unterverzeichnisse und die enthaltenen dateien in ein MSFlexGrid bringen... oder wenisgstens... wie kann ich die alle einlesen??

ich find nix... und die hilfe ist hier nicht installiert...

danke

c ya

Thias 78

Wenn du VB benutzt, und das FilesystemObjekt nicht extra einbinden willst, dann reichen folgende Funktionen vollkommen aus:

'-----------------------------------------------------------------

'Ordner auslesen

'-----------------------------------------------------------------

' Returns a collection holding all the subdirectories in a path

' that match search attributes (optionally it returns the entire path).

Function GetDirectories(path As String, Optional Attributes As VbFileAttribute, _

Optional IncludePath As Boolean) As Collection

Dim dirname As String

Dim path2 As String

' initialize the result

Set GetDirectories = New Collection

' build the path name with a trailing backslash

path2 = path

If Right$(path2, 1) <> "\" Then path2 = path2 & "\"

' start the search

dirname = Dir$(path2 & "*.*", vbDirectory Or Attributes)

Do While Len(dirname)

If dirname = "." Or dirname = ".." Then

' exclude the "." and ".." entries

ElseIf (GetAttr(path2 & dirname) And vbDirectory) = 0 Then

' ignore regular files

Else

' this is a directory

' include the path if requested

If IncludePath Then dirname = path2 & dirname

GetDirectories.Add dirname, dirname

End If

' get next string

dirname = Dir$

Loop

End Function

'-----------------------------------------------------------------

'Dateien auslesen

'-----------------------------------------------------------------

' Returns a collection holding all the filenames that

' match a given filespec and search attributes.

Function GetFiles(filespec As String, Optional Attributes As VbFileAttribute) _

As Collection

Dim filename As String

Set GetFiles = New Collection

' start the search

filename = Dir$(filespec, Attributes)

Do While Len(filename)

' we've found a new file

GetFiles.Add filename, filename

' get ready for the next iteration

filename = Dir$

Loop

End Function

schau mal hier unter Registry

Archiv

Dieses Thema wurde archiviert und kann nicht mehr beantwortet werden.

Configure browser push notifications

Chrome (Android)
  1. Tap the lock icon next to the address bar.
  2. Tap Permissions → Notifications.
  3. Adjust your preference.
Chrome (Desktop)
  1. Click the padlock icon in the address bar.
  2. Select Site settings.
  3. Find Notifications and adjust your preference.