|
-
Jan 19th, 2002, 04:21 AM
#1
removing lines completly from an ini file
hello,
how can i remove sevral lines from my ini fies completly?
-
Jan 19th, 2002, 11:43 PM
#2
From the MSDN library:
WritePrivateProfileString
The WritePrivateProfileString function copies a string into the specified section of the specified initialization file.
This function is provided for compatibility with 16-bit Windows-based applications. WIn32-based applications should store initialization information in the registry.
BOOL WritePrivateProfileString(
LPCTSTR lpAppName, // pointer to section name
LPCTSTR lpKeyName, // pointer to key name
LPCTSTR lpString, // pointer to string to add
LPCTSTR lpFileName // pointer to initialization filename
);
Parameters
lpAppName
Pointer to a null-terminated string containing the name of the section to which the string will be copied. If the section does not exist, it is created. The name of the section is case-independent; the string can be any combination of uppercase and lowercase letters.
**************** This section has the info you need *******
lpKeyName
Pointer to the null-terminated string containing the name of the key to be associated with a string. If the key does not exist in the specified section, it is created. If this parameter is NULL, the entire section, including all entries within the section, is deleted.
lpString
Pointer to a null-terminated string to be written to the file. If this parameter is NULL, the key pointed to by the lpKeyName parameter is deleted.
****************************************************
Windows 95: The system does not support the use of the TAB (\t) character as part of this parameter.
lpFileName
Pointer to a null-terminated string that names the initialization file.
Return Values
If the function successfully copies the string to the initialization file, the return value is nonzero.
If the function fails, or if it flushes the cached version of the most recently accessed initialization file, the return value is zero. To get extended error information, call GetLastError.
Remarks
Windows 95: Windows 95 keeps a cached version of WIN.INI to improve performance. If all three parameters are NULL, the function flushes the cache. The function always returns FALSE after flushing the cache, regardless of whether the flush succeeds or fails.
A section in the initialization file must have the following form:
[section]
key=string
.
.
.
If the lpFileName parameter does not contain a full path and filename for the file, WritePrivateProfileString searches the Windows directory for the file. If the file does not exist, this function creates the file in the Windows directory.
If lpFileName contains a full path and filename and the file does not exist, WriteProfileString creates the file. The specified directory must already exist.
Windows NT: Windows NT maps most .INI file references to the registry, using the mapping defined under the following registry key:
HKEY_LOCAL_MACHINE\Software\Microsoft\
Windows NT\CurrentVersion\IniFileMapping
Windows NT keeps a cache for the IniFileMapping registry key. Calling WritePrivateProfileStringW with the value of all arguments set to NULL will cause Windows NT to refresh its cache of the IniFileMappingKey for the specified .INI file.
The Win32 profile functions (Get/WriteProfile*, Get/WritePrivateProfile*) use the following steps to locate initialization information:
Look in the registry for the name of the initialization file, say MYFILE.INI, under IniFileMapping:
HKEY_LOCAL_MACHINE\Software\Microsoft\
Windows NT\CurrentVersion\IniFileMapping\myfile.ini
Look for the section name specified by lpAppName. This will be a named value under myfile.ini, or a subkey of myfile.ini, or will not exist.
If the section name specified by lpAppName is a named value under myfile.ini, then that value specifies where in the registry you will find the keys for the section.
If the section name specified by lpAppName is a subkey of myfile.ini, then named values under that subkey specify where in the registry you will find the keys for the section. If the key you are looking for does not exist as a named value, then there will be an unnamed value (shown as <No Name>) that specifies the default location in the registry where you will find the key.
If the section name specified by lpAppName does not exist as a named value or as a subkey under myfile.ini, then there will be an unnamed value (shown as <No Name>) under myfile.ini that specifies the default location in the registry where you will find the keys for the section.
If there is no subkey for MYFILE.INI, or if there is no entry for the section name, then look for the actual MYFILE.INI on the disk and read its contents.
When looking at values in the registry that specify other registry locations, there are several prefixes that change the behavior of the .INI file mapping:
! - this character forces all writes to go both to the registry and to the .INI file on disk.
# - this character causes the registry value to be set to the value in the Windows 3.1 .INI file when a new user logs in for the first time after setup.
@ - this character prevents any reads from going to the .INI file on disk if the requested data is not found in the registry.
USR: - this prefix stands for HKEY_CURRENT_USER, and the text after the prefix is relative to that key.
SYS: - this prefix stands for HKEY_LOCAL_MACHINE\SOFTWARE, and the text after the prefix is relative to that key.
An application using the WritePrivateProfileStringW function to enter .INI file information into the registry should follow these guidelines:
Ensure that no .INI file of the specified name exists on the system.
Ensure that there is a key entry in the registry that specifies the .INI file. This entry should be under the path HKEY_LOCAL_MACHINE\SOFTWARE \Microsoft\Windows NT\CurrentVersion\IniFileMapping.
Specify a value for that .INI file key entry that specifies a section. That is to say, an application must specify a section name, as it would appear within an .INI file or registry entry. Here is an example: [My Section].
For system files, specify SYS for an added value.
For application files, specify USR within the added value. Here is an example: "My Section: USR: App Name\Section". And, since USR indicates a mapping under HKEY_CURRENT_USER, the application should also create a key under HKEY_CURRENT_USER that specifies the application name listed in the added value. For the example just given, that would be "App Name".
After following the preceding steps, an application setup program should call WritePrivateProfileStringW with the first three parameters set to NULL, and the fourth parameter set to the INI filename. For example:
WritePrivateProfileStringW( NULL, NULL, NULL, L"appname.ini" );
Such a call causes the mapping of an .INI file to the registry to take effect before the next system reboot. The system rereads the mapping information into shared memory. A user will not have to reboot their computer after installing an application in order to have future invocations of the application see the mapping of the .INI file to the registry.
The following sample code illustrates the preceding guidelines and is based on several assumptions:
There is an application named App Name.
That application uses an .INI file named APPNAME.INI.
There is a section in the .INI file that we want to look like this:
[Section1]
FirstKey = It all worked out okay.
SecondKey = By golly, it works.
ThirdKey = Another test.
The user will not have to reboot the system in order to have future invocations of the application see the mapping of the .INI file to the registry.
-
Jan 20th, 2002, 01:18 PM
#3
from what i read briefly this talks about translating ini files to the registery but i want to delete lines from my ini file;
i have for example an ini file that lookes like this:
[key1]
something=blahblah
blah1=blah2
blah3=blahblah4
now i want to remove this line:
something=blahblah
i want a fucntion that will go a little bit like this:
DelIniLine "Somthing", "Key1", "c:\inifile.ini"
and then my ini will look like this:
[key1]
blah1=blah2
blah3=blahblah4
but i don't know how to make such function and how to remove the lines completly, and not just giving them the value of "0"...
-
Jan 25th, 2002, 06:30 AM
#4
-
Jan 25th, 2002, 09:07 AM
#5
Since an INI file is simply a text file (for the most part) the
following logic should be workable, if not pretty:
1. Open the source ini file
2. read the lines untile EOF
a. if the line is NOT to be deleted, output to temp.ini
3. delete the original ini file
4. rename temp.ini to original.ini file
It would make good sense to rename the original to something
else to make sure that if you made a mistake you could get back.
Maybe something like:
i = 0
addname = "0000"
loop while originalname + addname.ini exists
i = i + 1
addname = right$("0000" & ltrim(str$(i)),4)
end loop
Probably a more efficient way to do it, but it should work.
Good Luck
-
Jan 25th, 2002, 12:28 PM
#6
**************** This section has the info you need *******
lpKeyName
Pointer to the null-terminated string containing the name of the key to be associated with a string. If the key does not exist in the specified section, it is created. If this parameter is NULL, the entire section, including all entries within the section, is deleted.
lpString
Pointer to a null-terminated string to be written to the file. If this parameter is NULL, the key pointed to by the lpKeyName parameter is deleted.
****************************************************
Code:
Private Sub cmdDelete_Click()
Dim strSelSectName As String, lngListLen As Long
' Delete Client data (unless there is only one client?).
strImportType = cmbImportType.Text
lngListLen2 = WritePrivateProfileString(strImportType, vbNullString, vbNullString, strIniFilePath + strIniFileName)
' staXferStatus.Panels(1).Text = "Status: Client Information Deleted"
' DoEvents
End Sub
Declare Function WritePrivateProfileSection Lib "Kernel32" Alias "WritePrivateProfileSectionA" (ByVal strSelSectName As String, ByVal strSectData As String, ByVal strIniFileName As String) As Long
Declare Function WritePrivateProfileString Lib "Kernel32" Alias "WritePrivateProfileStringA" (ByVal strSelSectName As String, ByVal strKeyName As String, ByVal strKeyValue As String, ByVal strIniFileName As String) As Long
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|