Atlanta Custom Software Development 

 
   Search        Code/Page
 

User Login
Email

Password

 

Forgot the Password?
Services
» Web Development
» Maintenance
» Data Integration/BI
» Information Management
Programming
  Database
Automation
OS/Networking
Graphics
Links
Tools
» Regular Expr Tester
» Free Tools



Click here to copy the following block
Private Const MAX_PATH = 260

Private Type SHFILEINFO
  hIcon As Long
  iIcon As Long
  dwAttributes As Long
  szDisplayName As String * MAX_PATH
  szTypeName As String * 80
End Type

Private Declare Function SHGetFileInfo Lib "Shell32" Alias "SHGetFileInfoA" _
  (ByVal pszPath As Any, ByVal dwFileAttributes As Long, psfi As SHFILEINFO, _
  ByVal cbFileInfo As Long, ByVal uFlags As Long) As Long

'Returns True if the specified folder has at least one sub-folder

Function FolderHasSubFolders(ByVal sPath As String) As Boolean
  Const SFGAO_HASSUBFOLDER = &H80000000
  Const SHGFI_ATTRIBUTES = &H800
  
  Dim FInfo As SHFILEINFO

  ' retrieve the folder's attributes
  SHGetFileInfo sPath, 0, FInfo, Len(FInfo), SHGFI_ATTRIBUTES
  ' check che presence of the HASSUBFOLDER attribute
  FolderHasSubFolders = (FInfo.dwAttributes And SFGAO_HASSUBFOLDER)
End Function


Submitted By : Nayan Patel  (Member Since : 5/26/2004 12:23:06 PM)

Job Description : He is the moderator of this site and currently working as an independent consultant. He works with VB.net/ASP.net, SQL Server and other MS technologies. He is MCSD.net, MCDBA and MCSE. In his free time he likes to watch funny movies and doing oil painting.
View all (893) submissions by this author  (Birth Date : 7/14/1981 )


Home   |  Comment   |  Contact Us   |  Privacy Policy   |  Terms & Conditions   |  BlogsZappySys

© 2008 BinaryWorld LLC. All rights reserved.