.NET
cancel
Showing results for 
Show  only  | Search instead for 
Did you mean: 

Check if file open

4 REPLIES 4
SOLVED
Reply
Message 1 of 5
SRSDS
918 Views, 4 Replies

Check if file open

I need to export data to an excel file but I need to check if the file is already open.

 

Searching the internet I found this but I don't know what "imports" to use to use to enable it. 

    Public Function FileInUse(ByVal sFile As String) As Boolean
        If System.IO.File.Exists(sFile) Then
            Try
                Dim F As Short = FreeFile()
                FileOpen(F, sFile, OpenMode.Binary, OpenAccess.ReadWrite, OpenShare.LockReadWrite)
                FileClose(F)
            Catch
                Return True
            End Try
        End If
    End Function

 

 

4 REPLIES 4
Message 2 of 5
BMcAnney
in reply to: SRSDS

Looks like you need to import Microsoft.VisualBasic to get the FileOpen and FileClose functions. You may want to change them to use IO.File.Open and IO.File.Close though, to get away from the old VB syntax.

 

Brent McAnney

Message 3 of 5
Hallex
in reply to: SRSDS

I don't know what is the namespaces you use

in your program to work with Excel

Anyway you may want to try this function as well

   'Imports Microsoft.Office.Interop.Excel
    'Imports Excel = Microsoft.Office.Interop.Excel
    Public Function IsExcelFileOpen(xlapp As Microsoft.Office.Interop.Excel.Application, filename As String) As Boolean
        Dim isopen As Boolean = True
        Dim wbook As Microsoft.Office.Interop.Excel.Workbook
        Try
            wbook = xlapp.Workbooks(filename)
        Catch
            isopen = False
        End Try
        Return isopen
    End Function

 

~'J'~

_____________________________________
C6309D9E0751D165D0934D0621DFF27919
Message 4 of 5
SRSDS
in reply to: BMcAnney

Hi,

I added Imports Microsoft.VisualBasic but it didn't support the problem

 

OpenMode.Binary is the only one it has a problem with it seems.

Message 5 of 5
arcticad
in reply to: SRSDS

Microsoft.VisualBasic.OpenMode.Binary

---------------------------



(defun botsbuildbots() (botsbuildbots))

Can't find what you're looking for? Ask the community or share your knowledge.

Post to forums  

Autodesk DevCon in Munich May 28-29th


Autodesk Design & Make Report

”Boost